Class: Io::Flow::V0::Models::AddressConfiguration
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::AddressConfiguration
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#country ⇒ Object
readonly
Returns the value of attribute country.
-
#field_validation ⇒ Object
readonly
Returns the value of attribute field_validation.
-
#formats ⇒ Object
readonly
Returns the value of attribute formats.
-
#provinces ⇒ Object
readonly
Returns the value of attribute provinces.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ AddressConfiguration
constructor
A new instance of AddressConfiguration.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ AddressConfiguration
Returns a new instance of AddressConfiguration.
22194 22195 22196 22197 22198 22199 22200 22201 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22194 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:country, :field_validation], 'AddressConfiguration') @country = HttpClient::Preconditions.assert_class('country', opts.delete(:country), String) @field_validation = (x = opts.delete(:field_validation); x.is_a?(::Io::Flow::V0::Models::AddressFieldValidation) ? x : ::Io::Flow::V0::Models::AddressFieldValidation.new(x)) @provinces = HttpClient::Preconditions.assert_class('provinces', (x = opts.delete(:provinces); x.nil? ? [] : x), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::AddressConfigurationProvince) ? x : ::Io::Flow::V0::Models::AddressConfigurationProvince.new(x)) } @formats = HttpClient::Preconditions.assert_class('formats', (x = opts.delete(:formats); x.nil? ? [] : x), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::AddressConfigurationFormat) ? x : ::Io::Flow::V0::Models::AddressConfigurationFormat.new(x)) } end |
Instance Attribute Details
#country ⇒ Object (readonly)
Returns the value of attribute country.
22192 22193 22194 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22192 def country @country end |
#field_validation ⇒ Object (readonly)
Returns the value of attribute field_validation.
22192 22193 22194 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22192 def field_validation @field_validation end |
#formats ⇒ Object (readonly)
Returns the value of attribute formats.
22192 22193 22194 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22192 def formats @formats end |
#provinces ⇒ Object (readonly)
Returns the value of attribute provinces.
22192 22193 22194 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22192 def provinces @provinces end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
22207 22208 22209 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22207 def copy(incoming={}) AddressConfiguration.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
22211 22212 22213 22214 22215 22216 22217 22218 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22211 def to_hash { :country => country, :field_validation => field_validation.to_hash, :provinces => provinces.map { |o| o.to_hash }, :formats => formats.map { |o| o.to_hash } } end |
#to_json ⇒ Object
22203 22204 22205 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22203 def to_json JSON.dump(to_hash) end |