Class: Google::Apis::AdminDirectoryV1::UserEmail
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AdminDirectoryV1::UserEmail
 
- 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
Overview
JSON template for an email.
Instance Attribute Summary collapse
- 
  
    
      #address  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Email id of the user. 
- 
  
    
      #custom_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Custom Type. 
- 
  
    
      #primary  ⇒ Boolean 
    
    
      (also: #primary?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    If this is user's primary email. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Each entry can have a type which indicates standard types of that entry. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ UserEmail 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of UserEmail. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UserEmail
Returns a new instance of UserEmail
| 3312 3313 3314 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 3312 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#address ⇒ String
Email id of the user.
Corresponds to the JSON property address
| 3291 3292 3293 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 3291 def address @address end | 
#custom_type ⇒ String
Custom Type.
Corresponds to the JSON property customType
| 3296 3297 3298 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 3296 def custom_type @custom_type end | 
#primary ⇒ Boolean Also known as: primary?
If this is user's primary email. Only one entry could be marked as primary.
Corresponds to the JSON property primary
| 3301 3302 3303 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 3301 def primary @primary end | 
#type ⇒ String
Each entry can have a type which indicates standard types of that entry. For
example email could be of home, work etc. In addition to the standard type, an
entry can have a custom type and can take any value Such types should have the
CUSTOM value as type and also have a customType value.
Corresponds to the JSON property type
| 3310 3311 3312 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 3310 def type @type end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3317 3318 3319 3320 3321 3322 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 3317 def update!(**args) @address = args[:address] if args.key?(:address) @custom_type = args[:custom_type] if args.key?(:custom_type) @primary = args[:primary] if args.key?(:primary) @type = args[:type] if args.key?(:type) end |