UNPKG

cecon-interfaces

Version:
13 lines (12 loc) 483 B
import { SponsorshipValueEntity } from '../../general/entities/sponsorship-value.entity'; import { EVoucherTargetTypes } from '../../voucher'; import { IOrderBenefits } from '../interfaces'; export declare class OrderBenefitsEntity implements IOrderBenefits { description: string; id: string; referenceId: string; sponsorshipValues: SponsorshipValueEntity[]; value: number; target: EVoucherTargetTypes; constructor(data?: Partial<OrderBenefitsEntity>); }