Class: Io::Flow::V0::Models::CustomerInvoice
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::CustomerInvoice
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#address ⇒ Object
readonly
Returns the value of attribute address.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ CustomerInvoice
constructor
A new instance of CustomerInvoice.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ CustomerInvoice
Returns a new instance of CustomerInvoice.
28417 28418 28419 28420 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28417 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) @address = (x = opts.delete(:address); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::BillingAddress) ? x : ::Io::Flow::V0::Models::BillingAddress.new(x))) end |
Instance Attribute Details
#address ⇒ Object (readonly)
Returns the value of attribute address.
28415 28416 28417 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28415 def address @address end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
28426 28427 28428 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28426 def copy(incoming={}) CustomerInvoice.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
28430 28431 28432 28433 28434 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28430 def to_hash { :address => address.nil? ? nil : address.to_hash } end |
#to_json ⇒ Object
28422 28423 28424 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28422 def to_json JSON.dump(to_hash) end |