Class: Io::Flow::V0::Models::CardNonceForm

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

Overview

The card nonce form presents a one time token to exchance server side for a permanent, secure tokenized card

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ CardNonceForm

Returns a new instance of CardNonceForm.



11307
11308
11309
11310
11311
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11307

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:token], 'CardNonceForm')
  @token = HttpClient::Preconditions.assert_class('token', opts.delete(:token), String)
end

Instance Attribute Details

#tokenObject (readonly)

Returns the value of attribute token.



11305
11306
11307
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11305

def token
  @token
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



11317
11318
11319
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11317

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

#to_hashObject



11321
11322
11323
11324
11325
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11321

def to_hash
  {
    :token => token
  }
end

#to_jsonObject



11313
11314
11315
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11313

def to_json
  JSON.dump(to_hash)
end