import { APP_TYPE, COMMAN_STATUS, DISCOUNT_TYPE, USER_TYPES } from '../constants/app'; import { IDefaultAttributes } from './commonInterface'; export interface ICoinPurchaseOfferModelAttributes extends IDefaultAttributes { id: string; title?: string; discountType: DISCOUNT_TYPE; discount: number; totalAmount: number; coin: number; totalCoin: number; isDefault: boolean; status: COMMAN_STATUS; gstCharge: number; payableAmount: number; gstPercentage: number; appType: APP_TYPE; userType: USER_TYPES; }