Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 491 Bytes

File metadata and controls

23 lines (15 loc) · 491 Bytes

AccountType

The type of bank account.

Example Usage

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");

Values

Name Value
BANK_ACCOUNT bank_account
CREDIT_CARD credit_card
OTHER other