/* tslint:disable */ /* eslint-disable */ /** * loans * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Account balances presented to inquirer such as card processor */ export interface AccountBalances { /** * The unique account identifier */ accountId?: string; /** * The available balance of a deposit or credit account */ availableBalance?: number; /** * The card type either DEBIT or CREDIT */ cardType?: AccountBalancesCardTypeEnum; /** * The overdraft limit of a deposit account or the loan amount in case of a credit account */ creditLimit?: number; /** * Currency code used for the account */ currencyCode?: string; /** * The current balance of a deposit account or principal balance of a revolving credit */ totalBalance?: number; } export const AccountBalancesCardTypeEnum = { Debit: 'DEBIT', Credit: 'CREDIT', } as const; export type AccountBalancesCardTypeEnum = (typeof AccountBalancesCardTypeEnum)[keyof typeof AccountBalancesCardTypeEnum];