Class: Google::Apis::AndroidenterpriseV1::ListUsersResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AndroidenterpriseV1::ListUsersResponse
 
- 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 user resources.
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #user  ⇒ Array<Google::Apis::AndroidenterpriseV1::User> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A user of an enterprise. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListUsersResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListUsersResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListUsersResponse
Returns a new instance of ListUsersResponse
| 2677 2678 2679 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2677 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
androidenterprise#usersListResponse".
Corresponds to the JSON property kind
| 2670 2671 2672 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2670 def kind @kind end | 
#user ⇒ Array<Google::Apis::AndroidenterpriseV1::User>
A user of an enterprise.
Corresponds to the JSON property user
| 2675 2676 2677 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2675 def user @user end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2682 2683 2684 2685 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 2682 def update!(**args) @kind = args[:kind] if args.key?(:kind) @user = args[:user] if args.key?(:user) end |