Class: Io::Flow::V0::Models::CustomerLastUsed
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::CustomerLastUsed
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Last used details pertaining to a customer.
Instance Attribute Summary collapse
-
#order ⇒ Object
readonly
Returns the value of attribute order.
-
#payment ⇒ Object
readonly
Returns the value of attribute payment.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ CustomerLastUsed
constructor
A new instance of CustomerLastUsed.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ CustomerLastUsed
Returns a new instance of CustomerLastUsed.
28443 28444 28445 28446 28447 28448 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28443 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:order, :payment], 'CustomerLastUsed') @order = (x = opts.delete(:order); x.is_a?(::Io::Flow::V0::Models::CustomerOrder) ? x : ::Io::Flow::V0::Models::CustomerOrder.new(x)) @payment = (x = opts.delete(:payment); x.is_a?(::Io::Flow::V0::Models::CustomerPayment) ? x : ::Io::Flow::V0::Models::CustomerPayment.new(x)) end |
Instance Attribute Details
#order ⇒ Object (readonly)
Returns the value of attribute order.
28441 28442 28443 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28441 def order @order end |
#payment ⇒ Object (readonly)
Returns the value of attribute payment.
28441 28442 28443 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28441 def payment @payment end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
28454 28455 28456 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28454 def copy(incoming={}) CustomerLastUsed.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
28458 28459 28460 28461 28462 28463 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28458 def to_hash { :order => order.to_hash, :payment => payment.to_hash } end |
#to_json ⇒ Object
28450 28451 28452 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28450 def to_json JSON.dump(to_hash) end |