Class: Google::Apis::Adexchangebuyer2V2beta1::ListDealAssociationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::Adexchangebuyer2V2beta1::ListDealAssociationsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/adexchangebuyer2_v2beta1/classes.rb,
generated/google/apis/adexchangebuyer2_v2beta1/representations.rb,
generated/google/apis/adexchangebuyer2_v2beta1/representations.rb
Overview
A response for listing creative and deal associations
Instance Attribute Summary collapse
-
#associations ⇒ Array<Google::Apis::Adexchangebuyer2V2beta1::CreativeDealAssociation>
The list of associations.
-
#next_page_token ⇒ String
A token to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListDealAssociationsResponse
constructor
A new instance of ListDealAssociationsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListDealAssociationsResponse
Returns a new instance of ListDealAssociationsResponse
2350 2351 2352 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2350 def initialize(**args) update!(**args) end |
Instance Attribute Details
#associations ⇒ Array<Google::Apis::Adexchangebuyer2V2beta1::CreativeDealAssociation>
The list of associations.
Corresponds to the JSON property associations
2339 2340 2341 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2339 def associations @associations end |
#next_page_token ⇒ String
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
2348 2349 2350 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2348 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2355 2356 2357 2358 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2355 def update!(**args) @associations = args[:associations] if args.key?(:associations) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |