Class: Io::Flow::V0::Models::RedirectAuthorizationForm
- Inherits:
-
AuthorizationForm
- Object
- AuthorizationForm
- Io::Flow::V0::Models::RedirectAuthorizationForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Executes a redirect-based payment based on the provided payment method.
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.
-
#ip ⇒ Object
readonly
Returns the value of attribute ip.
-
#issuer ⇒ Object
readonly
Returns the value of attribute issuer.
-
#key ⇒ Object
readonly
Returns the value of attribute key.
-
#method ⇒ Object
readonly
Returns the value of attribute method.
-
#order_number ⇒ Object
readonly
Returns the value of attribute order_number.
-
#redirect_urls ⇒ Object
readonly
Returns the value of attribute redirect_urls.
Attributes inherited from AuthorizationForm
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ RedirectAuthorizationForm
constructor
A new instance of RedirectAuthorizationForm.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from AuthorizationForm
Constructor Details
#initialize(incoming = {}) ⇒ RedirectAuthorizationForm
Returns a new instance of RedirectAuthorizationForm.
62872 62873 62874 62875 62876 62877 62878 62879 62880 62881 62882 62883 62884 62885 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62872 def initialize(incoming={}) super(:discriminator => AuthorizationForm::Types::REDIRECT_AUTHORIZATION_FORM) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:method, :order_number, :amount, :currency, :redirect_urls], 'RedirectAuthorizationForm') @method = HttpClient::Preconditions.assert_class('method', opts.delete(:method), String) @issuer = (x = opts.delete(:issuer); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::IssuerReference) ? x : ::Io::Flow::V0::Models::IssuerReference.new(x))) @order_number = HttpClient::Preconditions.assert_class('order_number', opts.delete(:order_number), 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) @redirect_urls = (x = opts.delete(:redirect_urls); x.is_a?(::Io::Flow::V0::Models::PostPaymentRedirectUrls) ? x : ::Io::Flow::V0::Models::PostPaymentRedirectUrls.new(x)) @key = (x = opts.delete(:key); x.nil? ? nil : HttpClient::Preconditions.assert_class('key', 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
#amount ⇒ Object (readonly)
Returns the value of attribute amount.
62870 62871 62872 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62870 def amount @amount end |
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
62870 62871 62872 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62870 def attributes @attributes end |
#currency ⇒ Object (readonly)
Returns the value of attribute currency.
62870 62871 62872 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62870 def currency @currency end |
#ip ⇒ Object (readonly)
Returns the value of attribute ip.
62870 62871 62872 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62870 def ip @ip end |
#issuer ⇒ Object (readonly)
Returns the value of attribute issuer.
62870 62871 62872 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62870 def issuer @issuer end |
#key ⇒ Object (readonly)
Returns the value of attribute key.
62870 62871 62872 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62870 def key @key end |
#method ⇒ Object (readonly)
Returns the value of attribute method.
62870 62871 62872 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62870 def method @method end |
#order_number ⇒ Object (readonly)
Returns the value of attribute order_number.
62870 62871 62872 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62870 def order_number @order_number end |
#redirect_urls ⇒ Object (readonly)
Returns the value of attribute redirect_urls.
62870 62871 62872 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62870 def redirect_urls @redirect_urls end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
62891 62892 62893 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62891 def copy(incoming={}) RedirectAuthorizationForm.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
62895 62896 62897 62898 62899 62900 62901 62902 62903 62904 62905 62906 62907 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62895 def subtype_to_hash { :method => method, :issuer => issuer.nil? ? nil : issuer.to_hash, :order_number => order_number, :amount => amount.to_f.to_s, :currency => currency, :redirect_urls => redirect_urls.to_hash, :key => key, :attributes => attributes.nil? ? nil : attributes, :ip => ip } end |
#to_json ⇒ Object
62887 62888 62889 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62887 def to_json JSON.dump(to_hash) end |