UNPKG

pl4y-data-library

Version:

This library contains the dtos, enums, schemas, and other data objects needed in the pl4y ecosystem.

12 lines (11 loc) 298 B
import { CurrencyCodeEnum } from "../../../enums/currency-code.enum"; export declare class PricingDTO { id?: string; productId: string; price: number; currencyCode: CurrencyCodeEnum; supplierId?: string; effectiveDate?: Date; expiryDate?: Date; discount?: number; }