Class: Google::Apis::Adexchangebuyer2V2beta1::ListDealAssociationsResponse

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

Overview

A response for listing creative and deal associations

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListDealAssociationsResponse

Returns a new instance of ListDealAssociationsResponse.



2309
2310
2311
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2309

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

Instance Attribute Details

#associationsArray<Google::Apis::Adexchangebuyer2V2beta1::CreativeDealAssociation>

The list of associations. Corresponds to the JSON property associations



2300
2301
2302
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2300

def associations
  @associations
end

#next_page_tokenString

A token to retrieve the next page of results. Pass this value in the ListDealAssociationsRequest.page_token field in the subsequent call to ' ListDealAssociation' method to retrieve the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


2307
2308
2309
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2307

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2314
2315
2316
2317
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2314

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