Class: Io::Flow::V0::Models::CustomerLastUsed

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Overview

Last used details pertaining to a customer.

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#orderObject (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

#paymentObject (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_hashObject



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_jsonObject



28450
28451
28452
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28450

def to_json
  JSON.dump(to_hash)
end