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.
28511 28512 28513 28514 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28511 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.
28509 28510 28511 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28509 def address @address end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
28520 28521 28522 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28520 def copy(incoming={}) CustomerInvoice.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
28524 28525 28526 28527 28528 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28524 def to_hash { :address => address.nil? ? nil : address.to_hash } end |
#to_json ⇒ Object
28516 28517 28518 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28516 def to_json JSON.dump(to_hash) end |