ordercloud-javascript-sdk
Version:
The offical Javascript SDK for the Ordercloud ecommerce API
19 lines (18 loc) • 514 B
TypeScript
import { PriceBreak } from './PriceBreak';
export interface PriceSchedule<TPriceScheduleXp = any> {
OwnerID?: string;
ID?: string;
Name: string;
ApplyTax?: boolean;
ApplyShipping?: boolean;
MinQuantity?: number;
MaxQuantity?: number;
UseCumulativeQuantity?: boolean;
RestrictedQuantity?: boolean;
PriceBreaks?: PriceBreak[];
Currency?: string;
SaleStart?: string;
SaleEnd?: string;
readonly IsOnSale?: boolean;
xp?: TPriceScheduleXp;
}