Class: Google::Apis::ContentV2_1::RegionPostalCodeArea

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/content_v2_1/classes.rb,
lib/google/apis/content_v2_1/representations.rb,
lib/google/apis/content_v2_1/representations.rb

Overview

A list of postal codes that defines the region area. Note: All regions defined using postal codes are accessible via the account's ShippingSettings. postalCodeGroups resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RegionPostalCodeArea

Returns a new instance of RegionPostalCodeArea.



11188
11189
11190
# File 'lib/google/apis/content_v2_1/classes.rb', line 11188

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

Instance Attribute Details

#postal_codesArray<Google::Apis::ContentV2_1::RegionPostalCodeAreaPostalCodeRange>

Required. A range of postal codes. Corresponds to the JSON property postalCodes



11181
11182
11183
# File 'lib/google/apis/content_v2_1/classes.rb', line 11181

def postal_codes
  @postal_codes
end

#region_codeString

Required. CLDR territory code or the country the postal code group applies to. Corresponds to the JSON property regionCode

Returns:

  • (String)


11186
11187
11188
# File 'lib/google/apis/content_v2_1/classes.rb', line 11186

def region_code
  @region_code
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11193
11194
11195
11196
# File 'lib/google/apis/content_v2_1/classes.rb', line 11193

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