Class: Google::Apis::ContentV2_1::PostalCodeGroup

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PostalCodeGroup

Returns a new instance of PostalCodeGroup.



9528
9529
9530
# File 'lib/google/apis/content_v2_1/classes.rb', line 9528

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)


9516
9517
9518
# File 'lib/google/apis/content_v2_1/classes.rb', line 9516

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)


9521
9522
9523
# File 'lib/google/apis/content_v2_1/classes.rb', line 9521

def name
  @name
end

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

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



9526
9527
9528
# File 'lib/google/apis/content_v2_1/classes.rb', line 9526

def postal_code_ranges
  @postal_code_ranges
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9533
9534
9535
9536
9537
# File 'lib/google/apis/content_v2_1/classes.rb', line 9533

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