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
-
#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.
-
#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.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#order_number ⇒ Object
readonly
Returns the value of attribute order_number.
-
#redirect_urls ⇒ Object
readonly
Returns the value of attribute redirect_urls.
-
#token ⇒ Object
readonly
Returns the value of attribute token.
Attributes inherited from AuthorizationForm
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.
30259 30260 30261 30262 30263 30264 30265 30266 30267 30268 30269 30270 30271 30272 30273 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30259 def initialize(incoming={}) super(:discriminator => 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) @amount = (x = opts.delete(:amount); x.nil? ? nil : HttpClient::Preconditions.assert_class('amount', HttpClient::Helper.to_big_decimal(x), BigDecimal)) @currency = (x = opts.delete(:currency); x.nil? ? nil : HttpClient::Preconditions.assert_class('currency', x, 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)) = (x = opts.delete(:options); x.nil? ? nil : HttpClient::Preconditions.assert_class('options', x, Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::AuthorizationOption) ? x : ::Io::Flow::V0::Models::AuthorizationOption.apply(x)) }) @redirect_urls = (x = opts.delete(:redirect_urls); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::PostPaymentRedirectUrls) ? x : ::Io::Flow::V0::Models::PostPaymentRedirectUrls.new(x))) end |
Instance Attribute Details
#amount ⇒ Object (readonly)
Returns the value of attribute amount.
30257 30258 30259 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30257 def amount @amount end |
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
30257 30258 30259 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30257 def attributes @attributes end |
#currency ⇒ Object (readonly)
Returns the value of attribute currency.
30257 30258 30259 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30257 def currency @currency end |
#cvv ⇒ Object (readonly)
Returns the value of attribute cvv.
30257 30258 30259 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30257 def cvv @cvv end |
#ip ⇒ Object (readonly)
Returns the value of attribute ip.
30257 30258 30259 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30257 def ip @ip end |
#key ⇒ Object (readonly)
Returns the value of attribute key.
30257 30258 30259 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30257 def key @key end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
30257 30258 30259 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30257 def end |
#order_number ⇒ Object (readonly)
Returns the value of attribute order_number.
30257 30258 30259 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30257 def order_number @order_number end |
#redirect_urls ⇒ Object (readonly)
Returns the value of attribute redirect_urls.
30257 30258 30259 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30257 def redirect_urls @redirect_urls end |
#token ⇒ Object (readonly)
Returns the value of attribute token.
30257 30258 30259 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30257 def token @token end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
30279 30280 30281 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30279 def copy(incoming={}) MerchantOfRecordAuthorizationForm.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
30283 30284 30285 30286 30287 30288 30289 30290 30291 30292 30293 30294 30295 30296 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30283 def subtype_to_hash { :token => token, :order_number => order_number, :amount => amount, :currency => currency, :key => key, :cvv => cvv, :attributes => attributes.nil? ? nil : attributes, :ip => ip, :options => .nil? ? nil : .map { |o| o.value }, :redirect_urls => redirect_urls.nil? ? nil : redirect_urls.to_hash } end |
#to_json ⇒ Object
30275 30276 30277 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30275 def to_json JSON.dump(to_hash) end |