import { Model } from 'sequelize'; import { IOffersModelAttributes } from '../../interfaces/offersInterface'; import { TOfferModelCreationAttributes } from '../../types/offerType'; import { COMMAN_STATUS, OFFER_NAME, OFFER_TYPE } from '../../constants/app'; declare class OfferModel extends Model { id: string; type: OFFER_TYPE; offerType: OFFER_NAME; status?: COMMAN_STATUS; userId?: string; instituteId: string; name?: string; description?: string; discount: number; maximumDiscount?: number; minimumFee?: number; startTime?: Date; endTime?: Date; userLimit?: number; academicCalendarId?: string; createdBy: string; updatedBy: string; deletedBy: string; readonly createdAt: Date; readonly deletedAt: string; readonly updatedAt: Date; static associate(models: any): void; } export default OfferModel;