class Google::Apis::AdexchangebuyerV1_4::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_4::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 lib/google/apis/adexchangebuyer_v1_4/classes.rb, line 1249
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/adexchangebuyer_v1_4/classes.rb, line 1254
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