ordercloud-javascript-sdk
Version:
The offical Javascript SDK for the Ordercloud ecommerce API
28 lines (27 loc) • 782 B
TypeScript
export interface EligiblePromotion<TEligiblePromotionXp = any> {
readonly 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?: TEligiblePromotionXp;
}