Class: Google::Apis::ContentV2::PostalCodeGroup

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PostalCodeGroup

Returns a new instance of PostalCodeGroup.



8718
8719
8720
# File 'generated/google/apis/content_v2/classes.rb', line 8718

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

Instance Attribute Details

#countryString

The CLDR territory code of the country the postal code group applies to. Required. Corresponds to the JSON property country

Returns:

  • (String)


8706
8707
8708
# File 'generated/google/apis/content_v2/classes.rb', line 8706

def country
  @country
end

#nameString

The name of the postal code group, referred to in headers. Required. Corresponds to the JSON property name

Returns:

  • (String)


8711
8712
8713
# File 'generated/google/apis/content_v2/classes.rb', line 8711

def name
  @name
end

#postal_code_rangesArray<Google::Apis::ContentV2::PostalCodeRange>

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



8716
8717
8718
# File 'generated/google/apis/content_v2/classes.rb', line 8716

def postal_code_ranges
  @postal_code_ranges
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8723
8724
8725
8726
8727
# File 'generated/google/apis/content_v2/classes.rb', line 8723

def update!(**args)
  @country = args[:country] if args.key?(:country)
  @name = args[:name] if args.key?(:name)
  @postal_code_ranges = args[:postal_code_ranges] if args.key?(:postal_code_ranges)
end