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
| 1484 1485 1486 | # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1484 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
| 1473 1474 1475 | # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1473 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
| 1482 1483 1484 | # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1482 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1489 1490 1491 1492 | # File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 1489 def update!(**args) @associations = args[:associations] if args.key?(:associations) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |