Class: Google::Apis::PeopleV1::Address
- Inherits:
-
Object
- Object
- Google::Apis::PeopleV1::Address
- 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 physical address. May be a P.O. box or street address. All fields are optional.
Instance Attribute Summary collapse
-
#city ⇒ String
The city of the address.
-
#country ⇒ String
The country of the address.
-
#country_code ⇒ String
The ISO 3166-1 alpha-2 country code of the address.
-
#extended_address ⇒ String
The extended address of the address; for example, the apartment number.
-
#formatted_type ⇒ String
The read-only type of the address translated and formatted in the viewer's account locale or the
Accept-Language
HTTP header locale. -
#formatted_value ⇒ String
The unstructured value of the address.
-
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
-
#po_box ⇒ String
The P.O.
-
#postal_code ⇒ String
The postal code of the address.
-
#region ⇒ String
The region of the address; for example, the state or province.
-
#street_address ⇒ String
The street address.
-
#type ⇒ String
The type of the address.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Address
constructor
A new instance of Address.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Address
Returns a new instance of Address
1582 1583 1584 |
# File 'generated/google/apis/people_v1/classes.rb', line 1582 def initialize(**args) update!(**args) end |
Instance Attribute Details
#city ⇒ String
The city of the address.
Corresponds to the JSON property city
1530 1531 1532 |
# File 'generated/google/apis/people_v1/classes.rb', line 1530 def city @city end |
#country ⇒ String
The country of the address.
Corresponds to the JSON property country
1541 1542 1543 |
# File 'generated/google/apis/people_v1/classes.rb', line 1541 def country @country end |
#country_code ⇒ String
The ISO 3166-1 alpha-2 country
code of the address.
Corresponds to the JSON property countryCode
1519 1520 1521 |
# File 'generated/google/apis/people_v1/classes.rb', line 1519 def country_code @country_code end |
#extended_address ⇒ String
The extended address of the address; for example, the apartment number.
Corresponds to the JSON property extendedAddress
1555 1556 1557 |
# File 'generated/google/apis/people_v1/classes.rb', line 1555 def extended_address @extended_address end |
#formatted_type ⇒ String
The read-only type of the address translated and formatted in the viewer's
account locale or the Accept-Language
HTTP header locale.
Corresponds to the JSON property formattedType
1525 1526 1527 |
# File 'generated/google/apis/people_v1/classes.rb', line 1525 def formatted_type @formatted_type end |
#formatted_value ⇒ String
The unstructured value of the address. If this is not set by the user it
will be automatically constructed from structured values.
Corresponds to the JSON property formattedValue
1536 1537 1538 |
# File 'generated/google/apis/people_v1/classes.rb', line 1536 def formatted_value @formatted_value end |
#metadata ⇒ Google::Apis::PeopleV1::FieldMetadata
Metadata about a field.
Corresponds to the JSON property metadata
1580 1581 1582 |
# File 'generated/google/apis/people_v1/classes.rb', line 1580 def @metadata end |
#po_box ⇒ String
The P.O. box of the address.
Corresponds to the JSON property poBox
1560 1561 1562 |
# File 'generated/google/apis/people_v1/classes.rb', line 1560 def po_box @po_box end |
#postal_code ⇒ String
The postal code of the address.
Corresponds to the JSON property postalCode
1565 1566 1567 |
# File 'generated/google/apis/people_v1/classes.rb', line 1565 def postal_code @postal_code end |
#region ⇒ String
The region of the address; for example, the state or province.
Corresponds to the JSON property region
1570 1571 1572 |
# File 'generated/google/apis/people_v1/classes.rb', line 1570 def region @region end |
#street_address ⇒ String
The street address.
Corresponds to the JSON property streetAddress
1575 1576 1577 |
# File 'generated/google/apis/people_v1/classes.rb', line 1575 def street_address @street_address end |
#type ⇒ String
The type of the address. The type can be custom or predefined. Possible values include, but are not limited to, the following:
home
work
other
Corresponds to the JSON propertytype
1550 1551 1552 |
# File 'generated/google/apis/people_v1/classes.rb', line 1550 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 |
# File 'generated/google/apis/people_v1/classes.rb', line 1587 def update!(**args) @country_code = args[:country_code] if args.key?(:country_code) @formatted_type = args[:formatted_type] if args.key?(:formatted_type) @city = args[:city] if args.key?(:city) @formatted_value = args[:formatted_value] if args.key?(:formatted_value) @country = args[:country] if args.key?(:country) @type = args[:type] if args.key?(:type) @extended_address = args[:extended_address] if args.key?(:extended_address) @po_box = args[:po_box] if args.key?(:po_box) @postal_code = args[:postal_code] if args.key?(:postal_code) @region = args[:region] if args.key?(:region) @street_address = args[:street_address] if args.key?(:street_address) @metadata = args[:metadata] if args.key?(:metadata) end |