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
1473 1474 1475 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1473 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
1462 1463 1464 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1462 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
1471 1472 1473 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1471 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1478 1479 1480 1481 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1478 def update!(**args) @associations = args[:associations] if args.key?(:associations) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |