Class: Google::Apis::AdexchangebuyerV1_3::CreativesList

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable
Defined in:
generated/google/apis/adexchangebuyer_v1_3/classes.rb,
generated/google/apis/adexchangebuyer_v1_3/representations.rb,
generated/google/apis/adexchangebuyer_v1_3/representations.rb

Overview

The creatives feed lists the active creatives for the Ad Exchange buyer accounts that the user has access to. Each entry in the feed corresponds to a single creative.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CreativesList

Returns a new instance of CreativesList.



744
745
746
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 744

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#itemsArray<Google::Apis::AdexchangebuyerV1_3::Creative>

A list of creatives. Corresponds to the JSON property items



731
732
733
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 731

def items
  @items
end

#kindString

Resource type. Corresponds to the JSON property kind

Returns:

  • (String)


736
737
738
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 736

def kind
  @kind
end

#next_page_tokenString

Continuation token used to page through creatives. To retrieve the next page of results, set the next request's "pageToken" value to this. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


742
743
744
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 742

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



749
750
751
752
753
# File 'generated/google/apis/adexchangebuyer_v1_3/classes.rb', line 749

def update!(**args)
  @items = args[:items] if args.key?(:items)
  @kind = args[:kind] if args.key?(:kind)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end