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.
27890 27891 27892 27893 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27890 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.
27888 27889 27890 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27888 def address @address end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
27899 27900 27901 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27899 def copy(incoming={}) CustomerInvoice.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
27903 27904 27905 27906 27907 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27903 def to_hash { :address => address.nil? ? nil : address.to_hash } end |
#to_json ⇒ Object
27895 27896 27897 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27895 def to_json JSON.dump(to_hash) end |