class Google::Apis::Adexchangebuyer2V2beta1::ListDealAssociationsResponse

A response for listing creative and deal associations

Attributes

associations[RW]

The list of associations. Corresponds to the JSON property `associations` @return [Array<Google::Apis::Adexchangebuyer2V2beta1::CreativeDealAssociation>]

next_page_token[RW]

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` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/adexchangebuyer2_v2beta1/classes.rb, line 2306
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/adexchangebuyer2_v2beta1/classes.rb, line 2311
def update!(**args)
  @associations = args[:associations] if args.key?(:associations)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end