Interface MyCartSetLineItemShippingDetailsAction

interface MyCartSetLineItemShippingDetailsAction {
    action: "setLineItemShippingDetails";
    lineItemId: string;
    shippingDetails?: ItemShippingDetailsDraft;
}

Properties

action: "setLineItemShippingDetails"
lineItemId: string

id of the LineItem to update.

shippingDetails?: ItemShippingDetailsDraft

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

Generated using TypeDoc