Class: Google::Apis::ContentV2_1::ReturnAddressAddress

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReturnAddressAddress

Returns a new instance of ReturnAddressAddress.



11553
11554
11555
# File 'generated/google/apis/content_v2_1/classes.rb', line 11553

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

Instance Attribute Details

#countryString

CLDR country code (e.g. "US"). Corresponds to the JSON property country

Returns:

  • (String)


11523
11524
11525
# File 'generated/google/apis/content_v2_1/classes.rb', line 11523

def country
  @country
end

#localityString

City, town or commune. May also include dependent localities or sublocalities ( e.g. neighborhoods or suburbs). Corresponds to the JSON property locality

Returns:

  • (String)


11529
11530
11531
# File 'generated/google/apis/content_v2_1/classes.rb', line 11529

def locality
  @locality
end

#postal_codeString

Postal code or ZIP (e.g. "94043"). Corresponds to the JSON property postalCode

Returns:

  • (String)


11534
11535
11536
# File 'generated/google/apis/content_v2_1/classes.rb', line 11534

def postal_code
  @postal_code
end

#recipient_nameString

Name of the recipient to address returns to. Corresponds to the JSON property recipientName

Returns:

  • (String)


11539
11540
11541
# File 'generated/google/apis/content_v2_1/classes.rb', line 11539

def recipient_name
  @recipient_name
end

#regionString

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

Returns:

  • (String)


11545
11546
11547
# File 'generated/google/apis/content_v2_1/classes.rb', line 11545

def region
  @region
end

#street_addressArray<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

Returns:

  • (Array<String>)


11551
11552
11553
# File 'generated/google/apis/content_v2_1/classes.rb', line 11551

def street_address
  @street_address
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11558
11559
11560
11561
11562
11563
11564
11565
# File 'generated/google/apis/content_v2_1/classes.rb', line 11558

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