nmkr-studio-api
Version:
Typesafe API Client to work with the NMKR Studio V2 API
20 lines (19 loc) • 621 B
TypeScript
import type { PricelistDiscountTypes } from './PricelistDiscountTypes';
export type GetDiscountsClass = {
condition?: PricelistDiscountTypes;
policyId1?: string | null;
policyId2?: string | null;
policyId3?: string | null;
policyId4?: string | null;
policyId5?: string | null;
minOrMaxValue?: number | null;
description?: string | null;
discountInPercent?: number;
minValue1?: number | null;
minValue2?: number | null;
minValue3?: number | null;
minValue4?: number | null;
minValue5?: number | null;
operator?: string | null;
couponcode?: string | null;
};