Class: Google::Apis::ContentV2_1::ReturnAddressAddress
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::ReturnAddressAddress
- Defined in:
- generated/google/apis/content_v2_1/classes.rb,
generated/google/apis/content_v2_1/representations.rb,
generated/google/apis/content_v2_1/representations.rb
Instance Attribute Summary collapse
-
#country ⇒ String
CLDR country code (e.g. "US").
-
#locality ⇒ String
City, town or commune.
-
#postal_code ⇒ String
Postal code or ZIP (e.g. "94043").
-
#recipient_name ⇒ String
Name of the recipient to address returns to.
-
#region ⇒ String
Top-level administrative subdivision of the country.
-
#street_address ⇒ Array<String>
Street-level part of the address.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReturnAddressAddress
constructor
A new instance of ReturnAddressAddress.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ReturnAddressAddress
Returns a new instance of ReturnAddressAddress
8381 8382 8383 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 8381 def initialize(**args) update!(**args) end |
Instance Attribute Details
#country ⇒ String
CLDR country code (e.g. "US").
Corresponds to the JSON property country
8351 8352 8353 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 8351 def country @country end |
#locality ⇒ String
City, town or commune. May also include dependent localities or sublocalities (
e.g. neighborhoods or suburbs).
Corresponds to the JSON property locality
8357 8358 8359 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 8357 def locality @locality end |
#postal_code ⇒ String
Postal code or ZIP (e.g. "94043").
Corresponds to the JSON property postalCode
8362 8363 8364 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 8362 def postal_code @postal_code end |
#recipient_name ⇒ String
Name of the recipient to address returns to.
Corresponds to the JSON property recipientName
8367 8368 8369 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 8367 def recipient_name @recipient_name end |
#region ⇒ String
Top-level administrative subdivision of the country. For example, a state like
California ("CA") or a province like Quebec ("QC").
Corresponds to the JSON property region
8373 8374 8375 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 8373 def region @region end |
#street_address ⇒ Array<String>
Street-level part of the address. May be up to two lines, each line specified
as an array element.
Corresponds to the JSON property streetAddress
8379 8380 8381 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 8379 def street_address @street_address end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8386 8387 8388 8389 8390 8391 8392 8393 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 8386 def update!(**args) @country = args[:country] if args.key?(:country) @locality = args[:locality] if args.key?(:locality) @postal_code = args[:postal_code] if args.key?(:postal_code) @recipient_name = args[:recipient_name] if args.key?(:recipient_name) @region = args[:region] if args.key?(:region) @street_address = args[:street_address] if args.key?(:street_address) end |