Sha256: 1af41c2dc65eaf8ab9f3600ce0c1bf08aa91ce11404d7403bf23d57619324894

Contents?: true

Size: 860 Bytes

Versions: 30

Compression:

Stored size: 860 Bytes

Contents

module AchClient
  ## Representations of merchant account types (checking or savings)
  module AccountTypes
    ## Base class for all account types
    class AccountType
    end

    ## Represents a checking account
    class Checking < AchClient::AccountTypes::AccountType
    end

    ## Represents a savings account
    class Savings < AchClient::AccountTypes::AccountType
    end

    ## Represents a business checking account
    class BusinessChecking < AchClient::AccountTypes::Checking
    end

    ## Represents a business savings account
    class BusinessSavings < AchClient::AccountTypes::Savings
    end

    ## Represents a personal checking account
    class PersonalChecking < AchClient::AccountTypes::Checking
    end

    ## Represents a personal savings account
    class PersonalSavings < AchClient::AccountTypes::Savings
    end
  end
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
ach_client-5.3.4 lib/ach_client/objects/account_types.rb
ach_client-5.3.3 lib/ach_client/objects/account_types.rb
ach_client-5.3.2 lib/ach_client/objects/account_types.rb
ach_client-5.3.1 lib/ach_client/objects/account_types.rb
ach_client-5.3.0 lib/ach_client/objects/account_types.rb
ach_client-5.2.0 lib/ach_client/objects/account_types.rb
ach_client-5.1.0 lib/ach_client/objects/account_types.rb
ach_client-5.0.0 lib/ach_client/objects/account_types.rb
ach_client-4.0.0 lib/ach_client/objects/account_types.rb
ach_client-3.1.0 lib/ach_client/objects/account_types.rb
ach_client-3.0.0 lib/ach_client/objects/account_types.rb
ach_client-2.1.0 lib/ach_client/objects/account_types.rb
ach_client-2.0.0 lib/ach_client/objects/account_types.rb
ach_client-1.1.0 lib/ach_client/objects/account_types.rb
ach_client-1.0.3 lib/ach_client/objects/account_types.rb
ach_client-1.0.2 lib/ach_client/objects/account_types.rb
ach_client-1.0.1 lib/ach_client/objects/account_types.rb
ach_client-1.0.0 lib/ach_client/objects/account_types.rb
ach_client-0.7.0 lib/ach_client/objects/account_types.rb
ach_client-0.6.8 lib/ach_client/objects/account_types.rb