ordercloud-javascript-sdk
Version:
The offical Javascript SDK for the Ordercloud ecommerce API
14 lines (13 loc) • 425 B
TypeScript
import { Address } from './Address';
export interface InventoryRecord<TInventoryRecordXp = any, TAddressXp = any> {
ID?: string;
OwnerID?: string;
AllowAllBuyers?: boolean;
readonly Address?: Address<TAddressXp>;
AddressID: string;
OrderCanExceed?: boolean;
QuantityAvailable?: number;
NotificationPoint?: number;
readonly LastUpdated?: string;
xp?: TInventoryRecordXp;
}