import { CreateFulfillmentLabelWorkflowDTO } from "./create-fulfillment"; /** * The attributes to update in the fulfillment. */ export interface CreateShipmentWorkflowInput { /** * The ID of the fulfillment */ id: string; /** * The labels associated with the fulfillment. */ labels: CreateFulfillmentLabelWorkflowDTO[]; /** * The id of the user that marked fulfillment as shipped */ marked_shipped_by?: string | null; } //# sourceMappingURL=create-shipment.d.ts.map