import { IDefaultAttributes } from './commonInterface'; import { COMMAN_STATUS, BOOLEAN_STATUS, PAYMENT_TYPE, BANK_ACCOUNT_TYPE } from '../constants/app'; export interface IBankAccountDetailsInterfaceModelAttributes extends IDefaultAttributes { id: string; accountHolderName: string; bankName: string; branchName: string; accountNumber: string; ifscCode: string; instituteId: string; status: COMMAN_STATUS; isDefault: BOOLEAN_STATUS; isSelfAccount: BOOLEAN_STATUS; academicCalendarId?: string; type?: BANK_ACCOUNT_TYPE; oldId?: string; paymentMethod?: PAYMENT_TYPE[]; note?: string; }