Class: Io::Flow::V0::Models::LocalizedTranslation
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::LocalizedTranslation
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Localized translation of a given province/region/country
Instance Attribute Summary collapse
-
#locale ⇒ Object
readonly
Returns the value of attribute locale.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ LocalizedTranslation
constructor
A new instance of LocalizedTranslation.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ LocalizedTranslation
Returns a new instance of LocalizedTranslation.
38833 38834 38835 38836 38837 38838 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38833 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
#locale ⇒ Object (readonly)
Returns the value of attribute locale.
38831 38832 38833 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38831 def locale @locale end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
38831 38832 38833 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38831 def name @name end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
38844 38845 38846 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38844 def copy(incoming={}) LocalizedTranslation.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
38848 38849 38850 38851 38852 38853 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38848 def to_hash { :locale => locale.to_hash, :name => name } end |
#to_json ⇒ Object
38840 38841 38842 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38840 def to_json JSON.dump(to_hash) end |