ordercloud-javascript-sdk
Version:
The offical Javascript SDK for the Ordercloud ecommerce API
29 lines (28 loc) • 778 B
TypeScript
export interface AddedPromo<TAddedPromoXp = any> {
LineItemID?: string;
Amount?: number;
ID?: string;
LineItemLevel?: boolean;
Code?: string;
Name?: string;
RedemptionLimit?: number;
RedemptionLimitPerUser?: number;
readonly RedemptionCount?: number;
QuantityLimitPerOrder?: number;
ItemLimitPerOrder?: number;
ItemSortBy?: string;
Description?: string;
FinePrint?: string;
StartDate?: string;
ExpirationDate?: string;
EligibleExpression?: string;
ValueExpression?: string;
CanCombine?: boolean;
AllowAllBuyers?: boolean;
OwnerID?: string;
AutoApply?: boolean;
Active?: boolean;
UseIntegration?: boolean;
Priority?: number;
xp?: TAddedPromoXp;
}