class Braintree::UsBankAccountVerification
Attributes
additional_processor_response[R]
created_at[R]
gateway_rejection_reason[R]
id[R]
merchant_account_id[R]
processor_response_code[R]
processor_response_text[R]
status[R]
us_bank_account[R]
verification_determined_at[R]
verification_method[R]
Public Class Methods
_new(*args)
click to toggle source
# File lib/braintree/us_bank_account_verification.rb, line 73 def self._new(*args) self.new(*args) end
confirm_micro_transfer_amounts(*args)
click to toggle source
# File lib/braintree/us_bank_account_verification.rb, line 77 def self.confirm_micro_transfer_amounts(*args) Configuration.gateway.us_bank_account_verification.confirm_micro_transfer_amounts(*args) end
find(*args)
click to toggle source
# File lib/braintree/us_bank_account_verification.rb, line 81 def self.find(*args) Configuration.gateway.us_bank_account_verification.find(*args) end
search(&block)
click to toggle source
# File lib/braintree/us_bank_account_verification.rb, line 85 def self.search(&block) Configuration.gateway.us_bank_account_verification.search(&block) end
Protected Class Methods
new(attributes)
click to toggle source
# File lib/braintree/us_bank_account_verification.rb, line 43 def initialize(attributes) set_instance_variables_from_hash(attributes) end
Public Instance Methods
inspect()
click to toggle source
# File lib/braintree/us_bank_account_verification.rb, line 47 def inspect attr_order = [ :additional_processor_response, :created_at, :gateway_rejection_reason, :id, :merchant_account_id, :processor_response_code, :processor_response_text, :status, :us_bank_account, :verification_determined_at, :verification_method ] formatted_attrs = attr_order.map do |attr| "#{attr}: #{send(attr).inspect}" end "#<#{self.class} #{formatted_attrs.join(", ")}>" end