channelape-sdk
Version:
A client for interacting with ChannelApe's API
15 lines (14 loc) • 475 B
TypeScript
import { AdjustmentType } from '../../inventories/enum/AdjustmentType';
import { InventoryStatus } from '../../inventories/enum/InventoryStatus';
export interface BatchAdjustment {
quantity?: number;
futureAppliedAtpPercentage?: number;
expirationTime?: Date;
inventoryStatus: InventoryStatus;
idempotentKey: string;
locationId: string;
operation: AdjustmentType;
effectiveTime?: Date;
memo?: string;
aggregateChannelSync?: boolean;
}