Class: Google::Apis::AdminDirectoryV1::ChromeOsDevice::RecentUser
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AdminDirectoryV1::ChromeOsDevice::RecentUser
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/admin_directory_v1/classes.rb,
generated/google/apis/admin_directory_v1/representations.rb,
generated/google/apis/admin_directory_v1/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #email  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Email address of the user.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of the user Corresponds to the JSON property
type. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ RecentUser 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of RecentUser.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RecentUser
Returns a new instance of RecentUser
      852 853 854  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 852 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#email ⇒ String
Email address of the user. Present only if the user type is managed
Corresponds to the JSON property email
      845 846 847  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 845 def email @email end  | 
  
#type ⇒ String
The type of the user
Corresponds to the JSON property type
      850 851 852  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 850 def type @type end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      857 858 859 860  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 857 def update!(**args) @email = args[:email] if args.key?(:email) @type = args[:type] if args.key?(:type) end  |