class Google::Apis::AuthorizedbuyersmarketplaceV1::ListClientsResponse

Response message for the list method.

Attributes

clients[RW]

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

next_page_token[RW]

A token to retrieve the next page of results. Pass this value in the ListClientsRequest.pageToken field in the subsequent call to the list 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/authorizedbuyersmarketplace_v1/classes.rb, line 1020
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 1025
def update!(**args)
  @clients = args[:clients] if args.key?(:clients)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end