import { FEE_HISTORY_STATUS, PAYMENT_TYPE } from '../constants/app'; import { IDefaultAttributes } from './commonInterface'; export interface IStudentFeeHistoryModelAttributes extends IDefaultAttributes { id: string; instituteId: string; userId: string; academicCalendarId: string; parentHistoryId?: string; paymentType: PAYMENT_TYPE; paidFee: number; status: FEE_HISTORY_STATUS; feeTypeId?: string; subjectId?: string; batchId?: string; bankAccountId?: string | null; invoicePdf?: string; invoiceNumber?: string; studentFeeCollectionId: string; feeHistoryConfigId?: string; note?: string; history?: string; paidDate: Date; upiId?: string; bankName?: string; chequeNo?: string; isCreditAmountUsed?: boolean; }