Class: Google::Apis::AndroiddeviceprovisioningV1::CustomerListCustomersResponse

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

Overview

Response message for listing my customers.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CustomerListCustomersResponse

Returns a new instance of CustomerListCustomersResponse.



417
418
419
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 417

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

Instance Attribute Details

#customersArray<Google::Apis::AndroiddeviceprovisioningV1::Company>

The customer accounts the calling user is a member of. Corresponds to the JSON property customers



409
410
411
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 409

def customers
  @customers
end

#next_page_tokenString

A token used to access the next page of results. Omitted if no further results are available. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


415
416
417
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 415

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



422
423
424
425
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 422

def update!(**args)
  @customers = args[:customers] if args.key?(:customers)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end