Class: Io::Flow::V0::Models::DirectAuthorizationForm
- Inherits:
-
AuthorizationForm
- Object
- AuthorizationForm
- Io::Flow::V0::Models::DirectAuthorizationForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Creates an authorization for a transaction in which you remain the merchant of record. An authorization is used to check and reserve funds w/ a given payment method. No funds are actually transferred; once you have you an authorization, you can capture up to the amount of the authorization.
Instance Attribute Summary collapse
-
#amount ⇒ Object
readonly
Returns the value of attribute amount.
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
-
#currency ⇒ Object
readonly
Returns the value of attribute currency.
-
#customer ⇒ Object
readonly
Returns the value of attribute customer.
-
#cvv ⇒ Object
readonly
Returns the value of attribute cvv.
-
#destination ⇒ Object
readonly
Returns the value of attribute destination.
-
#ip ⇒ Object
readonly
Returns the value of attribute ip.
-
#key ⇒ Object
readonly
Returns the value of attribute key.
-
#token ⇒ Object
readonly
Returns the value of attribute token.
Attributes inherited from AuthorizationForm
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ DirectAuthorizationForm
constructor
A new instance of DirectAuthorizationForm.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from AuthorizationForm
Constructor Details
#initialize(incoming = {}) ⇒ DirectAuthorizationForm
Returns a new instance of DirectAuthorizationForm.
11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11970 def initialize(incoming={}) super(:discriminator => AuthorizationForm::Types::DIRECT_AUTHORIZATION_FORM) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:token, :amount, :currency], 'DirectAuthorizationForm') @token = HttpClient::Preconditions.assert_class('token', opts.delete(:token), String) @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) @customer = (x = opts.delete(:customer); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Customer) ? x : ::Io::Flow::V0::Models::Customer.new(x))) @key = (x = opts.delete(:key); x.nil? ? nil : HttpClient::Preconditions.assert_class('key', x, String)) @cvv = (x = opts.delete(:cvv); x.nil? ? nil : HttpClient::Preconditions.assert_class('cvv', x, String)) @attributes = (x = opts.delete(:attributes); x.nil? ? nil : HttpClient::Preconditions.assert_class('attributes', x, Hash).inject({}) { |h, d| h[d[0]] = HttpClient::Preconditions.assert_class('attributes', d[1], String); h }) @destination = (x = opts.delete(:destination); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Address) ? x : ::Io::Flow::V0::Models::Address.new(x))) @ip = (x = opts.delete(:ip); x.nil? ? nil : HttpClient::Preconditions.assert_class('ip', x, String)) end |
Instance Attribute Details
#amount ⇒ Object (readonly)
Returns the value of attribute amount.
11968 11969 11970 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11968 def amount @amount end |
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
11968 11969 11970 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11968 def attributes @attributes end |
#currency ⇒ Object (readonly)
Returns the value of attribute currency.
11968 11969 11970 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11968 def currency @currency end |
#customer ⇒ Object (readonly)
Returns the value of attribute customer.
11968 11969 11970 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11968 def customer @customer end |
#cvv ⇒ Object (readonly)
Returns the value of attribute cvv.
11968 11969 11970 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11968 def cvv @cvv end |
#destination ⇒ Object (readonly)
Returns the value of attribute destination.
11968 11969 11970 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11968 def destination @destination end |
#ip ⇒ Object (readonly)
Returns the value of attribute ip.
11968 11969 11970 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11968 def ip @ip end |
#key ⇒ Object (readonly)
Returns the value of attribute key.
11968 11969 11970 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11968 def key @key end |
#token ⇒ Object (readonly)
Returns the value of attribute token.
11968 11969 11970 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11968 def token @token end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
11989 11990 11991 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11989 def copy(incoming={}) DirectAuthorizationForm.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11993 def subtype_to_hash { :token => token, :amount => amount, :currency => currency, :customer => customer.nil? ? nil : customer.to_hash, :key => key, :cvv => cvv, :attributes => attributes.nil? ? nil : attributes, :destination => destination.nil? ? nil : destination.to_hash, :ip => ip } end |
#to_json ⇒ Object
11985 11986 11987 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 11985 def to_json JSON.dump(to_hash) end |