Class: Google::Apis::AndroidmanagementV1::ListDevicesResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AndroidmanagementV1::ListDevicesResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/androidmanagement_v1/classes.rb,
lib/google/apis/androidmanagement_v1/representations.rb,
lib/google/apis/androidmanagement_v1/representations.rb 
Overview
Response to a request to list devices for a given enterprise.
Instance Attribute Summary collapse
- 
  
    
      #devices  ⇒ Array<Google::Apis::AndroidmanagementV1::Device> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of devices.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If there are more results, a token to retrieve 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.
      3049 3050 3051  | 
    
      # File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3049 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#devices ⇒ Array<Google::Apis::AndroidmanagementV1::Device>
The list of devices.
Corresponds to the JSON property devices
      3042 3043 3044  | 
    
      # File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3042 def devices @devices end  | 
  
#next_page_token ⇒ String
If there are more results, a token to retrieve next page of results.
Corresponds to the JSON property nextPageToken
      3047 3048 3049  | 
    
      # File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3047 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3054 3055 3056 3057  | 
    
      # File 'lib/google/apis/androidmanagement_v1/classes.rb', line 3054 def update!(**args) @devices = args[:devices] if args.key?(:devices) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |