class Google::Apis::DfareportingV3_5::AdsListResponse

Ad List Response

Attributes

ads[RW]

Ad collection. Corresponds to the JSON property `ads` @return [Array<Google::Apis::DfareportingV3_5::Ad>]

kind[RW]

Identifies what kind of resource this is. Value: the fixed string “ dfareporting#adsListResponse”. Corresponds to the JSON property `kind` @return [String]

next_page_token[RW]

Pagination token to be used for the next list operation. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dfareporting_v3_5/classes.rb, line 962
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dfareporting_v3_5/classes.rb, line 967
def update!(**args)
  @ads = args[:ads] if args.key?(:ads)
  @kind = args[:kind] if args.key?(:kind)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end