Class: Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1ListDeviceUsersResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1ListDeviceUsersResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudidentity_v1/classes.rb,
lib/google/apis/cloudidentity_v1/representations.rb,
lib/google/apis/cloudidentity_v1/representations.rb
Overview
Response message that is returned from the ListDeviceUsers method.
Instance Attribute Summary collapse
-
#device_users ⇒ Array<Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1DeviceUser>
Devices meeting the list restrictions.
-
#next_page_token ⇒ String
Token to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAppsCloudidentityDevicesV1ListDeviceUsersResponse
constructor
A new instance of GoogleAppsCloudidentityDevicesV1ListDeviceUsersResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAppsCloudidentityDevicesV1ListDeviceUsersResponse
Returns a new instance of GoogleAppsCloudidentityDevicesV1ListDeviceUsersResponse.
1175 1176 1177 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 1175 def initialize(**args) update!(**args) end |
Instance Attribute Details
#device_users ⇒ Array<Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1DeviceUser>
Devices meeting the list restrictions.
Corresponds to the JSON property deviceUsers
1168 1169 1170 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 1168 def device_users @device_users 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
1173 1174 1175 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 1173 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1180 1181 1182 1183 |
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 1180 def update!(**args) @device_users = args[:device_users] if args.key?(:device_users) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |