class Google::Apis::SasportalV1alpha1::SasPortalListCustomersResponse

Response for `ListCustomers`.

Attributes

customers[RW]

The list of customers that match the request. Corresponds to the JSON property `customers` @return [Array<Google::Apis::SasportalV1alpha1::SasPortalCustomer>]

next_page_token[RW]

A pagination token returned from a previous call to ListCustomers that indicates from where listing should continue. If the field is missing or empty, it means there are no more customers. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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