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