Sha256: 592d93db8b8a7743f3b5a8f864fa8738840f207cd8b85d3237a41fd12a6e958e

Contents?: true

Size: 1.07 KB

Versions: 4

Compression:

Stored size: 1.07 KB

Contents

module Braintree
  class UsBankAccount
    include BaseModule

    attr_reader :routing_number, :last_4, :account_type, :account_description, :account_holder_name, :token, :image_url, :bank_name, :ach_mandate, :default

    def initialize(gateway, attributes) # :nodoc:
      @gateway = gateway
      set_instance_variables_from_hash(attributes)
      @ach_mandate = AchMandate.new(attributes[:ach_mandate]) if attributes[:ach_mandate]
    end

    def default?
      @default
    end

    class << self
      protected :new
    end

    def self._new(*args) # :nodoc:
      self.new *args
    end

    def self.find(token)
      Configuration.gateway.us_bank_account.find(token)
    end

    def self.sale(token, transaction_attributes)
      Configuration.gateway.transaction.sale(transaction_attributes.merge(
            :payment_method_token => token,
            :options => { :submit_for_settlement => true }
          )
        )
    end

    def self.sale!(token, transaction_attributes)
      return_object_or_raise(:transaction) { sale(token, transaction_attributes) }
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
braintree-2.71.0 lib/braintree/us_bank_account.rb
braintree-2.70.0 lib/braintree/us_bank_account.rb
braintree-2.69.1 lib/braintree/us_bank_account.rb
braintree-2.69.0 lib/braintree/us_bank_account.rb