import { PAYOUT_STATUS } from '../constants/app'; export interface IPayoutTransactionHistoryModelAttributes { id: string; userId: string; instituteId: string; academicCalendarId: string; userPayoutId: string; totalAmount: number; payableAmount: number; additionalPayoutIds: string[]; paidDate?: Date; payoutDate?: Date; status?: PAYOUT_STATUS; paidAmount: number; createdBy?: string; updatedBy?: string; deletedBy?: string; createdAt?: Date; updatedAt?: Date; deletedAt?: Date; }