Interface OrderSetCustomLineItemShippingDetailsAction

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

Properties

action: "setCustomLineItemShippingDetails"
customLineItemId?: string

id of the CustomLineItem to update. Either customLineItemId or customLineItemKey is required.

customLineItemKey?: string

key of the CustomLineItem to update. Either customLineItemId or customLineItemKey is required.

shippingDetails?: ItemShippingDetailsDraft

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