channelape-sdk
Version:
A client for interacting with ChannelApe's API
7 lines (6 loc) • 372 B
TypeScript
import { BatchAdjustmentByInventoryItemId } from './BatchAdjustmentByInventoryItemId';
import { BatchAdjustmentBySku } from './BatchAdjustmentBySku';
import { BatchCreationRequest } from './BatchCreationRequest';
export interface BatchAdjustmentCreationRequest extends BatchCreationRequest {
adjustments: (BatchAdjustmentBySku | BatchAdjustmentByInventoryItemId)[];
}