@shipengine/connect-order-source-api
Version:
This is the typescript/javascript definitions for the order source api
16 lines (15 loc) • 455 B
TypeScript
import { RequestBase } from './request-base';
import { InventoryPushItem } from '../models/inventory-push-item';
/**
* A request to update inventory in an order source.
*/
export interface InventoryPushRequest extends RequestBase {
/**
* A list of inventory items that need to be updated.
*/
items: InventoryPushItem[];
/**
* An optional cursor if one was provided by the InventoryPushResponse.
*/
cursor?: string;
}