Class: Google::Apis::PartnersV2::Location
- Inherits:
-
Object
- Object
- Google::Apis::PartnersV2::Location
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/partners_v2/classes.rb,
generated/google/apis/partners_v2/representations.rb,
generated/google/apis/partners_v2/representations.rb
Overview
A location with address and geographic coordinates. May optionally contain a detailed (multi-field) version of the address.
Instance Attribute Summary collapse
-
#address ⇒ String
The single string version of the address.
-
#address_line ⇒ Array<String>
The following address lines represent the most specific part of any address.
-
#administrative_area ⇒ String
Top-level administrative subdivision of this country.
-
#dependent_locality ⇒ String
Dependent locality or sublocality.
-
#language_code ⇒ String
Language code of the address.
-
#lat_lng ⇒ Google::Apis::PartnersV2::LatLng
An object representing a latitude/longitude pair.
-
#locality ⇒ String
Generally refers to the city/town portion of an address.
-
#postal_code ⇒ String
Values are frequently alphanumeric.
-
#region_code ⇒ String
CLDR (Common Locale Data Repository) region code .
-
#sorting_code ⇒ String
Use of this code is very country-specific, but will refer to a secondary classification code for sorting mail.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Location
constructor
A new instance of Location.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Location
Returns a new instance of Location
1528 1529 1530 |
# File 'generated/google/apis/partners_v2/classes.rb', line 1528 def initialize(**args) update!(**args) end |
Instance Attribute Details
#address ⇒ String
The single string version of the address.
Corresponds to the JSON property address
1474 1475 1476 |
# File 'generated/google/apis/partners_v2/classes.rb', line 1474 def address @address end |
#address_line ⇒ Array<String>
The following address lines represent the most specific part of any
address.
Corresponds to the JSON property addressLine
1480 1481 1482 |
# File 'generated/google/apis/partners_v2/classes.rb', line 1480 def address_line @address_line end |
#administrative_area ⇒ String
Top-level administrative subdivision of this country.
Corresponds to the JSON property administrativeArea
1485 1486 1487 |
# File 'generated/google/apis/partners_v2/classes.rb', line 1485 def administrative_area @administrative_area end |
#dependent_locality ⇒ String
Dependent locality or sublocality. Used for UK dependent localities, or
neighborhoods or boroughs in other locations.
Corresponds to the JSON property dependentLocality
1491 1492 1493 |
# File 'generated/google/apis/partners_v2/classes.rb', line 1491 def dependent_locality @dependent_locality end |
#language_code ⇒ String
Language code of the address. Should be in BCP 47 format.
Corresponds to the JSON property languageCode
1496 1497 1498 |
# File 'generated/google/apis/partners_v2/classes.rb', line 1496 def language_code @language_code end |
#lat_lng ⇒ Google::Apis::PartnersV2::LatLng
An object representing a latitude/longitude pair. This is expressed as a pair
of doubles representing degrees latitude and degrees longitude. Unless
specified otherwise, this must conform to the
WGS84
standard. Values must be within normalized ranges.
Corresponds to the JSON property latLng
1505 1506 1507 |
# File 'generated/google/apis/partners_v2/classes.rb', line 1505 def lat_lng @lat_lng end |
#locality ⇒ String
Generally refers to the city/town portion of an address.
Corresponds to the JSON property locality
1510 1511 1512 |
# File 'generated/google/apis/partners_v2/classes.rb', line 1510 def locality @locality end |
#postal_code ⇒ String
Values are frequently alphanumeric.
Corresponds to the JSON property postalCode
1515 1516 1517 |
# File 'generated/google/apis/partners_v2/classes.rb', line 1515 def postal_code @postal_code end |
#region_code ⇒ String
CLDR (Common Locale Data Repository) region code .
Corresponds to the JSON property regionCode
1520 1521 1522 |
# File 'generated/google/apis/partners_v2/classes.rb', line 1520 def region_code @region_code end |
#sorting_code ⇒ String
Use of this code is very country-specific, but will refer to a secondary
classification code for sorting mail.
Corresponds to the JSON property sortingCode
1526 1527 1528 |
# File 'generated/google/apis/partners_v2/classes.rb', line 1526 def sorting_code @sorting_code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 |
# File 'generated/google/apis/partners_v2/classes.rb', line 1533 def update!(**args) @address = args[:address] if args.key?(:address) @address_line = args[:address_line] if args.key?(:address_line) @administrative_area = args[:administrative_area] if args.key?(:administrative_area) @dependent_locality = args[:dependent_locality] if args.key?(:dependent_locality) @language_code = args[:language_code] if args.key?(:language_code) @lat_lng = args[:lat_lng] if args.key?(:lat_lng) @locality = args[:locality] if args.key?(:locality) @postal_code = args[:postal_code] if args.key?(:postal_code) @region_code = args[:region_code] if args.key?(:region_code) @sorting_code = args[:sorting_code] if args.key?(:sorting_code) end |