Class: Google::Apis::PlusDomainsV1::Person::Email
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::PlusDomainsV1::Person::Email
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/plus_domains_v1/classes.rb,
 generated/google/apis/plus_domains_v1/representations.rb,
 generated/google/apis/plus_domains_v1/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of address. 
- 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The email address. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Email 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Email. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Email
Returns a new instance of Email
| 2221 2222 2223 | # File 'generated/google/apis/plus_domains_v1/classes.rb', line 2221 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#type ⇒ String
The type of address. Possible values include, but are not limited to, the following values:
- "account" - Google account email address.
- "home" - Home email address.
- "work" - Work email address.
- "other" - Other.
Corresponds to the JSON property type
| 2214 2215 2216 | # File 'generated/google/apis/plus_domains_v1/classes.rb', line 2214 def type @type end | 
#value ⇒ String
The email address.
Corresponds to the JSON property value
| 2219 2220 2221 | # File 'generated/google/apis/plus_domains_v1/classes.rb', line 2219 def value @value end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2226 2227 2228 2229 | # File 'generated/google/apis/plus_domains_v1/classes.rb', line 2226 def update!(**args) @type = args[:type] if args.key?(:type) @value = args[:value] if args.key?(:value) end |