Class: Io::Flow::V0::Models::VirtualCardCapture

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ VirtualCardCapture

Returns a new instance of VirtualCardCapture.



43303
43304
43305
43306
43307
43308
43309
43310
43311
43312
43313
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43303

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :issuer, :virtual_card, :authorization, :amount, :currency, :created_at], 'VirtualCardCapture')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @issuer = (x = opts.delete(:issuer); x.is_a?(::Io::Flow::V0::Models::Issuer) ? x : ::Io::Flow::V0::Models::Issuer.new(x))
  @virtual_card = (x = opts.delete(:virtual_card); x.is_a?(::Io::Flow::V0::Models::VirtualCardReference) ? x : ::Io::Flow::V0::Models::VirtualCardReference.new(x))
  @authorization = (x = opts.delete(:authorization); x.is_a?(::Io::Flow::V0::Models::AuthorizationReference) ? x : ::Io::Flow::V0::Models::AuthorizationReference.new(x))
  @amount = HttpClient::Preconditions.assert_class('amount', HttpClient::Helper.to_big_decimal(opts.delete(:amount)), BigDecimal)
  @currency = HttpClient::Preconditions.assert_class('currency', opts.delete(:currency), String)
  @created_at = HttpClient::Preconditions.assert_class('created_at', HttpClient::Helper.to_date_time_iso8601(opts.delete(:created_at)), DateTime)
end

Instance Attribute Details

#amountObject (readonly)

Returns the value of attribute amount.



43301
43302
43303
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43301

def amount
  @amount
end

#authorizationObject (readonly)

Returns the value of attribute authorization.



43301
43302
43303
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43301

def authorization
  @authorization
end

#created_atObject (readonly)

Returns the value of attribute created_at.



43301
43302
43303
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43301

def created_at
  @created_at
end

#currencyObject (readonly)

Returns the value of attribute currency.



43301
43302
43303
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43301

def currency
  @currency
end

#idObject (readonly)

Returns the value of attribute id.



43301
43302
43303
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43301

def id
  @id
end

#issuerObject (readonly)

Returns the value of attribute issuer.



43301
43302
43303
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43301

def issuer
  @issuer
end

#virtual_cardObject (readonly)

Returns the value of attribute virtual_card.



43301
43302
43303
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43301

def virtual_card
  @virtual_card
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



43319
43320
43321
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43319

def copy(incoming={})
  VirtualCardCapture.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



43323
43324
43325
43326
43327
43328
43329
43330
43331
43332
43333
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43323

def to_hash
  {
    :id => id,
    :issuer => issuer.to_hash,
    :virtual_card => virtual_card.to_hash,
    :authorization => authorization.to_hash,
    :amount => amount.to_f.to_s,
    :currency => currency,
    :created_at => created_at
  }
end

#to_jsonObject



43315
43316
43317
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43315

def to_json
  JSON.dump(to_hash)
end