Class: Google::Apis::PlusV1::Person::Email

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/plus_v1/classes.rb,
generated/google/apis/plus_v1/representations.rb,
generated/google/apis/plus_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Email

Returns a new instance of Email.



1743
1744
1745
# File 'generated/google/apis/plus_v1/classes.rb', line 1743

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#typeString

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

Returns:

  • (String)


1736
1737
1738
# File 'generated/google/apis/plus_v1/classes.rb', line 1736

def type
  @type
end

#valueString

The email address. Corresponds to the JSON property value

Returns:

  • (String)


1741
1742
1743
# File 'generated/google/apis/plus_v1/classes.rb', line 1741

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1748
1749
1750
1751
# File 'generated/google/apis/plus_v1/classes.rb', line 1748

def update!(**args)
  @type = args[:type] if args.key?(:type)
  @value = args[:value] if args.key?(:value)
end