@alisdigital/types-library
Version:
TypeScript type definitions for Papilet ecosystem with session soft delete and event management features
18 lines (17 loc) • 400 B
TypeScript
export interface ICampaignModelAttributes {
_id: string;
title: string;
discountType: "percentage" | "fixed";
discountValue: number;
rules: {
minSpend: number;
maxDiscount: number;
maxUse: number;
isBuyOneGetOne: boolean;
};
startDate: Date;
endDate: Date;
status: "active" | "inactive";
createdAt: Date;
updatedAt: Date;
}