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
| 515 516 517 | # File 'generated/google/apis/content_v2/classes.rb', line 515 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
| 507 508 509 | # File 'generated/google/apis/content_v2/classes.rb', line 507 def admin @admin end | 
#email_address ⇒ String
User's email address.
Corresponds to the JSON property emailAddress
| 513 514 515 | # File 'generated/google/apis/content_v2/classes.rb', line 513 def email_address @email_address end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 520 521 522 523 | # File 'generated/google/apis/content_v2/classes.rb', line 520 def update!(**args) @admin = args[:admin] if args.key?(:admin) @email_address = args[:email_address] if args.key?(:email_address) end |