Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.47 KB

File metadata and controls

43 lines (34 loc) · 1.47 KB

AccountFieldDefinition

Properties

Name Type Description Notes
key KeyEnum Depending on the Key, the field's value will be stored in a different field in PayeeBankAccountData [optional]
displayName String Display name of the field [optional]
type TypeEnum There are some fields that are of type known to the frontend (IBAN, Swift) -- for those frontend should use its own validation library, e.g. ibantools [optional]
minLength Integer Minimum length of the field [optional]
maxLength Integer Maximum length of the field [optional]
digitsOnly Boolean Is the field digits (numeric) only [optional]
regex String Regex for validating the field (if specified) [optional]

Enum: KeyEnum

Name Value
IBAN "Iban"
ACCOUNTNUMBER "AccountNumber"
ROUTINGNUMBER "RoutingNumber"
BSB "BSB"
BRANCHCODE "BranchCode"
BANKCODE "BankCode"
INSTITUTIONNUMBER "InstitutionNumber"
TRANSITNUMBER "TransitNumber"
CLEARINGCODE "ClearingCode"
IFSCCODE "IfscCode"
CLABE "Clabe"
SORTCODE "SortCode"
SWIFT "Swift"

Enum: TypeEnum

Name Value
NONE "None"
IBAN "Iban"