Class: Google::Apis::AndroidenterpriseV1::ListEnterprisesResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AndroidenterpriseV1::ListEnterprisesResponse
 
- 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 matching enterprise resources.
Instance Attribute Summary collapse
- 
  
    
      #enterprise  ⇒ Array<Google::Apis::AndroidenterpriseV1::Enterprise> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An enterprise. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListEnterprisesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListEnterprisesResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListEnterprisesResponse
Returns a new instance of ListEnterprisesResponse
| 650 651 652 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 650 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#enterprise ⇒ Array<Google::Apis::AndroidenterpriseV1::Enterprise>
An enterprise.
Corresponds to the JSON property enterprise
| 642 643 644 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 642 def enterprise @enterprise end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
androidenterprise#enterprisesListResponse".
Corresponds to the JSON property kind
| 648 649 650 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 648 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 655 656 657 658 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 655 def update!(**args) @enterprise = args[:enterprise] if args.key?(:enterprise) @kind = args[:kind] if args.key?(:kind) end |