Class: Google::Apis::AndroiddeviceprovisioningV1::CustomerListDevicesResponse

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 of customer's liting devices.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CustomerListDevicesResponse

Returns a new instance of CustomerListDevicesResponse.



443
444
445
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 443

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

Instance Attribute Details

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

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



435
436
437
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 435

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)


441
442
443
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 441

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



448
449
450
451
# File 'lib/google/apis/androiddeviceprovisioning_v1/classes.rb', line 448

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