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.
Constructor Details
#initialize(**args) ⇒ ListDealAssociationsResponse
Returns a new instance of ListDealAssociationsResponse.
2285 2286 2287 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2285 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
2276 2277 2278 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2276 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
2283 2284 2285 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2283 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2290 2291 2292 2293 |
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 2290 def update!(**args) @associations = args[:associations] if args.key?(:associations) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |