Class: Google::Apis::AndroiddeviceprovisioningV1::CustomerListCustomersResponse
- Inherits:
-
Object
- Object
- Google::Apis::AndroiddeviceprovisioningV1::CustomerListCustomersResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androiddeviceprovisioning_v1/classes.rb,
generated/google/apis/androiddeviceprovisioning_v1/representations.rb,
generated/google/apis/androiddeviceprovisioning_v1/representations.rb
Overview
Response message for listing my customers.
Instance Attribute Summary collapse
-
#customers ⇒ Array<Google::Apis::AndroiddeviceprovisioningV1::Company>
The customer accounts the calling user is a member of.
-
#next_page_token ⇒ String
A token used to access the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CustomerListCustomersResponse
constructor
A new instance of CustomerListCustomersResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CustomerListCustomersResponse
Returns a new instance of CustomerListCustomersResponse
359 360 361 |
# File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 359 def initialize(**args) update!(**args) end |
Instance Attribute Details
#customers ⇒ Array<Google::Apis::AndroiddeviceprovisioningV1::Company>
The customer accounts the calling user is a member of.
Corresponds to the JSON property customers
351 352 353 |
# File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 351 def customers @customers end |
#next_page_token ⇒ String
A token used to access the next page of results. Omitted if no further
results are available.
Corresponds to the JSON property nextPageToken
357 358 359 |
# File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 357 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
364 365 366 367 |
# File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 364 def update!(**args) @customers = args[:customers] if args.key?(:customers) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |