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.
      2178 2179 2180  | 
    
      # File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2178 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
      2171 2172 2173  | 
    
      # File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2171 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
      2176 2177 2178  | 
    
      # File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2176 def telemetry_users @telemetry_users end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2183 2184 2185 2186  | 
    
      # File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2183 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  |