Class: Io::Flow::V0::Models::MerchantOfRecordAuthorizationForm
- Inherits:
-
AuthorizationForm
- Object
- AuthorizationForm
- Io::Flow::V0::Models::MerchantOfRecordAuthorizationForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Creates an authorization for a transaction for which Flow is the merchant of record. In this case, you must provide your order number for a valid Flow order. 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
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
-
#cvv ⇒ Object
readonly
Returns the value of attribute cvv.
-
#ip ⇒ Object
readonly
Returns the value of attribute ip.
-
#key ⇒ Object
readonly
Returns the value of attribute key.
-
#order_number ⇒ Object
readonly
Returns the value of attribute order_number.
-
#token ⇒ Object
readonly
Returns the value of attribute token.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ MerchantOfRecordAuthorizationForm
constructor
A new instance of MerchantOfRecordAuthorizationForm.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from AuthorizationForm
Constructor Details
#initialize(incoming = {}) ⇒ MerchantOfRecordAuthorizationForm
Returns a new instance of MerchantOfRecordAuthorizationForm.
12590 12591 12592 12593 12594 12595 12596 12597 12598 12599 12600 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12590 def initialize(incoming={}) super(:name => AuthorizationForm::Types::MERCHANT_OF_RECORD_AUTHORIZATION_FORM) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:token, :order_number], 'MerchantOfRecordAuthorizationForm') @token = HttpClient::Preconditions.assert_class('token', opts.delete(:token), String) @order_number = HttpClient::Preconditions.assert_class('order_number', opts.delete(:order_number), String) @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 }) @ip = (x = opts.delete(:ip); x.nil? ? nil : HttpClient::Preconditions.assert_class('ip', x, String)) end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
12588 12589 12590 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12588 def attributes @attributes end |
#cvv ⇒ Object (readonly)
Returns the value of attribute cvv.
12588 12589 12590 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12588 def cvv @cvv end |
#ip ⇒ Object (readonly)
Returns the value of attribute ip.
12588 12589 12590 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12588 def ip @ip end |
#key ⇒ Object (readonly)
Returns the value of attribute key.
12588 12589 12590 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12588 def key @key end |
#order_number ⇒ Object (readonly)
Returns the value of attribute order_number.
12588 12589 12590 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12588 def order_number @order_number end |
#token ⇒ Object (readonly)
Returns the value of attribute token.
12588 12589 12590 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12588 def token @token end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
12606 12607 12608 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12606 def copy(incoming={}) MerchantOfRecordAuthorizationForm.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12610 def subtype_to_hash { :token => token, :order_number => order_number, :key => key, :cvv => cvv, :attributes => attributes.nil? ? nil : attributes, :ip => ip } end |
#to_json ⇒ Object
12602 12603 12604 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 12602 def to_json JSON.dump(to_hash) end |