class Io::Flow::V0::Models::AchAuthorizationForm
Used for initiating an ACH (Automated Clearing House) bank transfer.
Attributes
account_number[R]
account_owner_name[R]
amount[R]
attributes[R]
billing_address[R]
currency[R]
ip[R]
key[R]
order_number[R]
routing_number[R]
Public Class Methods
new(incoming={})
click to toggle source
Calls superclass method
Io::Flow::V0::Models::AuthorizationForm::new
# File lib/flow_commerce/flow_api_v0_client.rb, line 28977 def initialize(incoming={}) super(:discriminator => AuthorizationForm::Types::ACH_AUTHORIZATION_FORM) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:account_owner_name, :account_number, :routing_number, :billing_address, :amount, :currency], 'AchAuthorizationForm') @account_owner_name = HttpClient::Preconditions.assert_class('account_owner_name', opts.delete(:account_owner_name), String) @account_number = HttpClient::Preconditions.assert_class('account_number', opts.delete(:account_number), String) @routing_number = HttpClient::Preconditions.assert_class('routing_number', opts.delete(:routing_number), String) @billing_address = (x = opts.delete(:billing_address); x.is_a?(::Io::Flow::V0::Models::BillingAddress) ? x : ::Io::Flow::V0::Models::BillingAddress.new(x)) @order_number = (x = opts.delete(:order_number); x.nil? ? nil : HttpClient::Preconditions.assert_class('order_number', x, 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) @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
Public Instance Methods
copy(incoming={})
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 28997 def copy(incoming={}) AchAuthorizationForm.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end
subtype_to_hash()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 29001 def subtype_to_hash { :account_owner_name => account_owner_name, :account_number => account_number, :routing_number => routing_number, :billing_address => billing_address.to_hash, :order_number => order_number, :amount => amount.to_f.to_s, :currency => currency, :key => key, :attributes => attributes.nil? ? nil : attributes, :ip => ip } end
to_json()
click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 28993 def to_json JSON.dump(to_hash) end