@medusajs/types
Version:
Medusa Types definition
19 lines • 521 B
TypeScript
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