Class: Io::Flow::V0::Models::LocalizedTranslation

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

Overview

Localized translation of a given province/region/country

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ LocalizedTranslation

Returns a new instance of LocalizedTranslation.



45846
45847
45848
45849
45850
45851
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45846

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:locale, :name], 'LocalizedTranslation')
  @locale = (x = opts.delete(:locale); x.is_a?(::Io::Flow::V0::Models::Locale) ? x : ::Io::Flow::V0::Models::Locale.new(x))
  @name = HttpClient::Preconditions.assert_class('name', opts.delete(:name), String)
end

Instance Attribute Details

#localeObject (readonly)

Returns the value of attribute locale.



45844
45845
45846
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45844

def locale
  @locale
end

#nameObject (readonly)

Returns the value of attribute name.



45844
45845
45846
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45844

def name
  @name
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



45857
45858
45859
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45857

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

#to_hashObject



45861
45862
45863
45864
45865
45866
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45861

def to_hash
  {
    :locale => locale.to_hash,
    :name => name
  }
end

#to_jsonObject



45853
45854
45855
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45853

def to_json
  JSON.dump(to_hash)
end