class Google::Apis::CloudchannelV1::GoogleCloudChannelV1ListCustomersResponse

Response message for CloudChannelService.ListCustomers.

Attributes

customers[RW]

The customers belonging to a reseller or distributor. Corresponds to the JSON property `customers` @return [Array<Google::Apis::CloudchannelV1::GoogleCloudChannelV1Customer>]

next_page_token[RW]

A token to retrieve the next page of results. Pass to ListCustomersRequest. page_token to obtain that page. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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