Class: Google::Apis::AndroiddeviceprovisioningV1::FindDevicesByOwnerResponse
- Inherits:
-
Object
- Object
- Google::Apis::AndroiddeviceprovisioningV1::FindDevicesByOwnerResponse
- 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 containing found 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.
-
#total_size ⇒ Fixnum
The total count of items in the list irrespective of pagination.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FindDevicesByOwnerResponse
constructor
A new instance of FindDevicesByOwnerResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FindDevicesByOwnerResponse
Returns a new instance of FindDevicesByOwnerResponse.
911 912 913 |
# File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 911 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
898 899 900 |
# File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 898 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
904 905 906 |
# File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 904 def next_page_token @next_page_token end |
#total_size ⇒ Fixnum
The total count of items in the list irrespective of pagination.
Corresponds to the JSON property totalSize
909 910 911 |
# File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 909 def total_size @total_size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
916 917 918 919 920 |
# File 'generated/google/apis/androiddeviceprovisioning_v1/classes.rb', line 916 def update!(**args) @devices = args[:devices] if args.key?(:devices) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @total_size = args[:total_size] if args.key?(:total_size) end |