Class: Google::Apis::DfareportingV2_7::AdvertisersListResponse

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

Overview

Advertiser List Response

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AdvertisersListResponse

Returns a new instance of AdvertisersListResponse



1236
1237
1238
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 1236

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

Instance Attribute Details

#advertisersArray<Google::Apis::DfareportingV2_7::Advertiser>

Advertiser collection. Corresponds to the JSON property advertisers



1223
1224
1225
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 1223

def advertisers
  @advertisers
end

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#advertisersListResponse". Corresponds to the JSON property kind

Returns:

  • (String)


1229
1230
1231
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 1229

def kind
  @kind
end

#next_page_tokenString

Pagination token to be used for the next list operation. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1234
1235
1236
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 1234

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1241
1242
1243
1244
1245
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 1241

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