class Google::Apis::AuthorizedbuyersmarketplaceV1::ListClientUsersResponse

Response message for the list method.

Attributes

client_users[RW]

The returned list of client users. Corresponds to the JSON property ‘clientUsers` @return [Array<Google::Apis::AuthorizedbuyersmarketplaceV1::ClientUser>]

next_page_token[RW]

A token to retrieve the next page of results. Pass this value in the ListClientUsersRequest.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 993
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 998
def update!(**args)
  @client_users = args[:client_users] if args.key?(:client_users)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end