Class: Google::Apis::AndroiddeviceprovisioningV1::CustomerListDevicesResponse
- Inherits:
-
Object
- Object
- Google::Apis::AndroiddeviceprovisioningV1::CustomerListDevicesResponse
- 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 of customer's liting devices.
Instance Attribute Summary collapse
-
#devices ⇒ Array<Google::Apis::AndroiddeviceprovisioningV1::Device>
The customer's devices.
-
#next_page_token ⇒ String
A token used to access the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CustomerListDevicesResponse
constructor
A new instance of CustomerListDevicesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CustomerListDevicesResponse
Returns a new instance of CustomerListDevicesResponse.
403 404 405 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 403 def initialize(**args) update!(**args) end |
Instance Attribute Details
#devices ⇒ Array<Google::Apis::AndroiddeviceprovisioningV1::Device>
The customer's devices.
Corresponds to the JSON property devices
395 396 397 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 395 def devices @devices 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
401 402 403 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 401 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
408 409 410 411 |
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 408 def update!(**args) @devices = args[:devices] if args.key?(:devices) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |