Class: Google::Apis::ContentV2::AccountUser
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContentV2::AccountUser
 
 
- Defined in:
 - generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #admin  ⇒ Boolean 
    
    
      (also: #admin?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Whether user is an admin.
 - 
  
    
      #email_address  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
User's email address.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AccountUser 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of AccountUser.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ AccountUser
Returns a new instance of AccountUser
      776 777 778  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 776 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#admin ⇒ Boolean Also known as: admin?
Whether user is an admin.
Corresponds to the JSON property admin
      768 769 770  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 768 def admin @admin end  | 
  
#email_address ⇒ String
User's email address.
Corresponds to the JSON property emailAddress
      774 775 776  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 774 def email_address @email_address end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      781 782 783 784  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 781 def update!(**args) @admin = args[:admin] if args.key?(:admin) @email_address = args[:email_address] if args.key?(:email_address) end  |