import { OFFER_NAME, OFFER_STATUS, OFFER_TYPE } from '../constants'; import { IDefaultAttributes } from './commonInterface'; export interface IUserHasOfferAndDiscountModelAttributes extends IDefaultAttributes { id: string; instituteId: string; academicCalendarId: string; userId: string; discount: number; offerType: OFFER_TYPE; status: OFFER_STATUS; offerAndDiscountId: string; applyDiscountAmount: number; offerApplyFor: OFFER_NAME; note?: string; discountBreakdown?: string; }