class Google::Apis::AdexchangebuyerV1_3::CreativesList
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.
Attributes
items[RW]
A list of creatives. Corresponds to the JSON property `items` @return [Array<Google::Apis::AdexchangebuyerV1_3::Creative>]
kind[RW]
Resource type. Corresponds to the JSON property `kind` @return [String]
next_page_token[RW]
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` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/adexchangebuyer_v1_3/classes.rb, line 744 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# 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