Class: Google::Apis::PeopleV1::EmailAddress
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::PeopleV1::EmailAddress
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/people_v1/classes.rb,
 generated/google/apis/people_v1/representations.rb,
 generated/google/apis/people_v1/representations.rb
Overview
A person's email address.
Instance Attribute Summary collapse
- 
  
    
      #display_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The display name of the email. 
- 
  
    
      #formatted_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The read-only type of the email address translated and formatted in the viewer's account locale or the Accept-LanguageHTTP header locale.
- 
  
    
      #metadata  ⇒ Google::Apis::PeopleV1::FieldMetadata 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Metadata about a field. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of the email address. 
- 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The email address. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ EmailAddress 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of EmailAddress. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ EmailAddress
Returns a new instance of EmailAddress
| 597 598 599 | # File 'generated/google/apis/people_v1/classes.rb', line 597 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#display_name ⇒ String
The display name of the email.
Corresponds to the JSON property displayName
| 570 571 572 | # File 'generated/google/apis/people_v1/classes.rb', line 570 def display_name @display_name end | 
#formatted_type ⇒ String
The read-only type of the email address translated and formatted in the
viewer's account locale or the Accept-Language HTTP header locale.
Corresponds to the JSON property formattedType
| 576 577 578 | # File 'generated/google/apis/people_v1/classes.rb', line 576 def formatted_type @formatted_type end | 
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
| 581 582 583 | # File 'generated/google/apis/people_v1/classes.rb', line 581 def @metadata end | 
#type ⇒ String
The type of the email address. The type can be custom or predefined. Possible values include, but are not limited to, the following:
- home
- work
- otherCorresponds to the JSON property- type
| 590 591 592 | # File 'generated/google/apis/people_v1/classes.rb', line 590 def type @type end | 
#value ⇒ String
The email address.
Corresponds to the JSON property value
| 595 596 597 | # File 'generated/google/apis/people_v1/classes.rb', line 595 def value @value end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 602 603 604 605 606 607 608 | # File 'generated/google/apis/people_v1/classes.rb', line 602 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @formatted_type = args[:formatted_type] if args.key?(:formatted_type) @metadata = args[:metadata] if args.key?(:metadata) @type = args[:type] if args.key?(:type) @value = args[:value] if args.key?(:value) end |