Class: Google::Apis::CloudidentityV1beta1::ListDevicesResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1beta1::ListDevicesResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudidentity_v1beta1/classes.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb
Overview
Response message that is returned from the ListDevices method.
Instance Attribute Summary collapse
-
#devices ⇒ Array<Google::Apis::CloudidentityV1beta1::Device>
Devices meeting the list restrictions.
-
#next_page_token ⇒ String
Token to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListDevicesResponse
constructor
A new instance of ListDevicesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListDevicesResponse
Returns a new instance of ListDevicesResponse.
2837 2838 2839 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2837 def initialize(**args) update!(**args) end |
Instance Attribute Details
#devices ⇒ Array<Google::Apis::CloudidentityV1beta1::Device>
Devices meeting the list restrictions.
Corresponds to the JSON property devices
2830 2831 2832 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2830 def devices @devices end |
#next_page_token ⇒ String
Token to retrieve the next page of results. Empty if there are no more results.
Corresponds to the JSON property nextPageToken
2835 2836 2837 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2835 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2842 2843 2844 2845 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2842 def update!(**args) @devices = args[:devices] if args.key?(:devices) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |