Class: Google::Apis::AuthorizedbuyersmarketplaceV1::ListClientUsersResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb,
lib/google/apis/authorizedbuyersmarketplace_v1/representations.rb,
lib/google/apis/authorizedbuyersmarketplace_v1/representations.rb
more...

Overview

Response message for the list method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListClientUsersResponse

Returns a new instance of ListClientUsersResponse.

[View source]

993
994
995
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 993

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#client_usersArray<Google::Apis::AuthorizedbuyersmarketplaceV1::ClientUser>

The returned list of client users. Corresponds to the JSON property clientUsers


984
985
986
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 984

def client_users
  @client_users
end

#next_page_tokenString

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

Returns:

  • (String)

991
992
993
# File 'lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb', line 991

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

998
999
1000
1001
# 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