ordercloud-javascript-sdk
Version:
The offical Javascript SDK for the Ordercloud ecommerce API
14 lines (13 loc) • 348 B
TypeScript
export interface AdHocProduct<TAdHocProductXp = any> {
ID?: string;
Name?: string;
Description?: string;
QuantityMultiplier?: number;
ShipWeight?: number;
ShipHeight?: number;
ShipWidth?: number;
ShipLength?: number;
DefaultSupplierID?: string;
Returnable?: boolean;
xp?: TAdHocProductXp;
}