scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
9 lines (8 loc) • 310 B
TypeScript
import { EVoucherRuleType } from '../enums';
import { IVoucherRule } from '../interfaces';
export declare class CampaignRuleEntity implements IVoucherRule {
type: EVoucherRuleType;
value: string | number | Date | boolean;
description: string;
constructor(data?: Partial<CampaignRuleEntity>);
}