Class: Google::Apis::AndroidenterpriseV1::ListDevicesResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AndroidenterpriseV1::ListDevicesResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidenterprise_v1/classes.rb,
 generated/google/apis/androidenterprise_v1/representations.rb,
 generated/google/apis/androidenterprise_v1/representations.rb
Overview
The device resources for the user.
Instance Attribute Summary collapse
- 
  
    
      #device  ⇒ Array<Google::Apis::AndroidenterpriseV1::Device> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A managed device. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListDevicesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListDevicesResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListDevicesResponse
Returns a new instance of ListDevicesResponse
| 541 542 543 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 541 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#device ⇒ Array<Google::Apis::AndroidenterpriseV1::Device>
A managed device.
Corresponds to the JSON property device
| 533 534 535 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 533 def device @device end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
androidenterprise#devicesListResponse".
Corresponds to the JSON property kind
| 539 540 541 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 539 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 546 547 548 549 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 546 def update!(**args) @device = args[:device] if args.key?(:device) @kind = args[:kind] if args.key?(:kind) end |