# Plaid::StandaloneAccountType ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **depository** | **String** | An account type holding cash, in which funds are deposited. Supported products for `depository` accounts are: Auth, Balance, Transactions, Identity, Payment Initiation, and Assets. | | | **credit** | **String** | A credit card type account. Supported products for `credit` accounts are: Balance, Transactions, Identity, and Liabilities. | | | **loan** | **String** | A loan type account. Supported products for `loan` accounts are: Balance, Liabilities, and Transactions. | | | **investment** | **String** | An investment account. Supported products for `investment` accounts are: Balance and Investments. | | | **other** | **String** | Other or unknown account type. Supported products for `other` accounts are: Balance, Transactions, Identity, and Assets. | | ## Example ```ruby require 'plaid' instance = Plaid::StandaloneAccountType.new( depository: null, credit: null, loan: null, investment: null, other: null ) ```