Class: Google::Apis::CloudiotV1::ListDevicesResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/cloudiot_v1/classes.rb,
generated/google/apis/cloudiot_v1/representations.rb,
generated/google/apis/cloudiot_v1/representations.rb

Overview

Response for ListDevices.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListDevicesResponse

Returns a new instance of ListDevicesResponse.



786
787
788
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 786

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

Instance Attribute Details

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

The devices that match the request. Corresponds to the JSON property devices



778
779
780
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 778

def devices
  @devices
end

#next_page_tokenString

If not empty, indicates that there may be more devices that match the request; this value should be passed in a new ListDevicesRequest. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


784
785
786
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 784

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



791
792
793
794
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 791

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