The type of bank account.
import com.apideck.unify.models.components.AccountType;
AccountType value = AccountType.BANK_ACCOUNT;
// Open enum: use .of() to create instances from custom string values
AccountType custom = AccountType.of("custom_value");| Name | Value |
|---|---|
BANK_ACCOUNT |
bank_account |
CREDIT_CARD |
credit_card |
OTHER |
other |