Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ListTelemetryUsersResponse
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ListTelemetryUsersResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chromemanagement_v1/classes.rb,
lib/google/apis/chromemanagement_v1/representations.rb,
lib/google/apis/chromemanagement_v1/representations.rb
Overview
Response message for listing telemetry users for a customer.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Token to specify next page in the list.
-
#telemetry_users ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUser>
Telemetry users returned in the response.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1ListTelemetryUsersResponse
constructor
A new instance of GoogleChromeManagementV1ListTelemetryUsersResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1ListTelemetryUsersResponse
Returns a new instance of GoogleChromeManagementV1ListTelemetryUsersResponse.
2184 2185 2186 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2184 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Token to specify next page in the list.
Corresponds to the JSON property nextPageToken
2177 2178 2179 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2177 def next_page_token @next_page_token end |
#telemetry_users ⇒ Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUser>
Telemetry users returned in the response.
Corresponds to the JSON property telemetryUsers
2182 2183 2184 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2182 def telemetry_users @telemetry_users end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2189 2190 2191 2192 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2189 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @telemetry_users = args[:telemetry_users] if args.key?(:telemetry_users) end |