class Google::Apis::AuthorizedbuyersmarketplaceV1::ListDealsResponse

Response message for listing deals in a proposal.

Attributes

deals[RW]

The list of deals. Corresponds to the JSON property ‘deals` @return [Array<Google::Apis::AuthorizedbuyersmarketplaceV1::Deal>]

next_page_token[RW]

Token to fetch 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/authorizedbuyersmarketplace_v1/classes.rb, line 1045
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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