Class: Google::Apis::AndroiddeviceprovisioningV1::FindDevicesByOwnerResponse

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 containing found devices.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FindDevicesByOwnerResponse

Returns a new instance of FindDevicesByOwnerResponse.



1019
1020
1021
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1019

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

Instance Attribute Details

#devicesArray<Google::Apis::AndroiddeviceprovisioningV1::Device>

The customer's devices. Corresponds to the JSON property devices



1006
1007
1008
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1006

def devices
  @devices
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)


1012
1013
1014
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1012

def next_page_token
  @next_page_token
end

#total_sizeFixnum

The total count of items in the list irrespective of pagination. Corresponds to the JSON property totalSize

Returns:

  • (Fixnum)


1017
1018
1019
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1017

def total_size
  @total_size
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1024
1025
1026
1027
1028
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 1024

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