Class: Io::Flow::V0::Models::Province

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Overview

A subdivision/province/state within a country. These conform to the ISO 3166-2 standard for country subdivisions. See api.flow.io/reference/provinces

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ Province

Returns a new instance of Province.



44481
44482
44483
44484
44485
44486
44487
44488
44489
44490
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44481

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :iso_3166_2, :name, :country, :province_type], 'Province')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @iso_3166_2 = HttpClient::Preconditions.assert_class('iso_3166_2', opts.delete(:iso_3166_2), String)
  @name = HttpClient::Preconditions.assert_class('name', opts.delete(:name), String)
  @country = HttpClient::Preconditions.assert_class('country', opts.delete(:country), String)
  @province_type = (x = opts.delete(:province_type); x.is_a?(::Io::Flow::V0::Models::ProvinceType) ? x : ::Io::Flow::V0::Models::ProvinceType.apply(x))
  @translations = (x = opts.delete(:translations); x.nil? ? nil : HttpClient::Preconditions.assert_class('translations', x, Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::LocalizedTranslation) ? x : ::Io::Flow::V0::Models::LocalizedTranslation.new(x)) })
end

Instance Attribute Details

#countryObject (readonly)

Returns the value of attribute country.



44479
44480
44481
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44479

def country
  @country
end

#idObject (readonly)

Returns the value of attribute id.



44479
44480
44481
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44479

def id
  @id
end

#iso_3166_2Object (readonly)

Returns the value of attribute iso_3166_2.



44479
44480
44481
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44479

def iso_3166_2
  @iso_3166_2
end

#nameObject (readonly)

Returns the value of attribute name.



44479
44480
44481
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44479

def name
  @name
end

#province_typeObject (readonly)

Returns the value of attribute province_type.



44479
44480
44481
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44479

def province_type
  @province_type
end

#translationsObject (readonly)

Returns the value of attribute translations.



44479
44480
44481
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44479

def translations
  @translations
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



44496
44497
44498
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44496

def copy(incoming={})
  Province.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



44500
44501
44502
44503
44504
44505
44506
44507
44508
44509
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44500

def to_hash
  {
    :id => id,
    :iso_3166_2 => iso_3166_2,
    :name => name,
    :country => country,
    :province_type => province_type.value,
    :translations => translations.nil? ? nil : translations.map { |o| o.to_hash }
  }
end

#to_jsonObject



44492
44493
44494
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44492

def to_json
  JSON.dump(to_hash)
end