Class: Io::Flow::V0::Models::CustomerAddressBookContactForm
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::CustomerAddressBookContactForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#address ⇒ Object
readonly
Returns the value of attribute address.
-
#address_preferences ⇒ Object
readonly
Returns the value of attribute address_preferences.
-
#contact ⇒ Object
readonly
Returns the value of attribute contact.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ CustomerAddressBookContactForm
constructor
A new instance of CustomerAddressBookContactForm.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ CustomerAddressBookContactForm
Returns a new instance of CustomerAddressBookContactForm.
28178 28179 28180 28181 28182 28183 28184 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28178 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:address], 'CustomerAddressBookContactForm') @address = (x = opts.delete(:address); x.is_a?(::Io::Flow::V0::Models::Address) ? x : ::Io::Flow::V0::Models::Address.new(x)) @contact = (x = opts.delete(:contact); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Contact) ? x : ::Io::Flow::V0::Models::Contact.new(x))) @address_preferences = (x = opts.delete(:address_preferences); x.nil? ? nil : HttpClient::Preconditions.assert_class('address_preferences', x, Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::CustomerAddressPreference) ? x : ::Io::Flow::V0::Models::CustomerAddressPreference.new(x)) }) end |
Instance Attribute Details
#address ⇒ Object (readonly)
Returns the value of attribute address.
28176 28177 28178 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28176 def address @address end |
#address_preferences ⇒ Object (readonly)
Returns the value of attribute address_preferences.
28176 28177 28178 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28176 def address_preferences @address_preferences end |
#contact ⇒ Object (readonly)
Returns the value of attribute contact.
28176 28177 28178 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28176 def contact @contact end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
28190 28191 28192 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28190 def copy(incoming={}) CustomerAddressBookContactForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
28194 28195 28196 28197 28198 28199 28200 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28194 def to_hash { :address => address.to_hash, :contact => contact.nil? ? nil : contact.to_hash, :address_preferences => address_preferences.nil? ? nil : address_preferences.map { |o| o.to_hash } } end |
#to_json ⇒ Object
28186 28187 28188 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28186 def to_json JSON.dump(to_hash) end |