mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
14 lines
448 B
TypeScript
14 lines
448 B
TypeScript
/* tslint:disable */
|
|
import { EntityDTOBaseOfCouponDTOAndICoupon } from './entity-dtobase-of-coupon-dtoand-icoupon';
|
|
import { CouponType } from './coupon-type';
|
|
import { PriceValueDTO } from './price-value-dto';
|
|
export interface CouponDTO extends EntityDTOBaseOfCouponDTOAndICoupon{
|
|
code?: string;
|
|
couponType: CouponType;
|
|
discount?: number;
|
|
exclusive?: boolean;
|
|
label?: string;
|
|
maxDiscounted?: PriceValueDTO;
|
|
value?: PriceValueDTO;
|
|
}
|