Interface CartSetCustomLineItemShippingDetailsAction

interface CartSetCustomLineItemShippingDetailsAction {
    action: "setCustomLineItemShippingDetails";
    customLineItemId: string;
    shippingDetails?: ItemShippingDetailsDraft;
}

Properties

action: "setCustomLineItemShippingDetails"
customLineItemId: string

id of the CustomLineItem to update.

shippingDetails?: ItemShippingDetailsDraft

Value to set. If empty, any existing value is removed.

Generated using TypeDoc