class Google::Apis::CloudcommerceprocurementV1::ListAccountsResponse

Response message for [PartnerProcurementService.ListAccounts[].

Attributes

accounts[RW]

The list of accounts in this response. Corresponds to the JSON property `accounts` @return [Array<Google::Apis::CloudcommerceprocurementV1::Account>]

next_page_token[RW]

The token for fetching the next page. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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