class Google::Apis::AuthorizedbuyersmarketplaceV1::ListProposalsResponse
Response message for listing proposals.
Attributes
next_page_token[RW]
Continuation token for fetching the next page of results. Corresponds to the JSON property ‘nextPageToken` @return [String]
proposals[RW]
The list of proposals. Corresponds to the JSON property ‘proposals` @return [Array<Google::Apis::AuthorizedbuyersmarketplaceV1::Proposal>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb, line 1095 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 1100 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @proposals = args[:proposals] if args.key?(:proposals) end