Interface MyCartSetLineItemRecurrenceInfoAction

Sets the recurrence information on the LineItem. If the Cart is already associated with a Recurring Order, this action will fail.

interface MyCartSetLineItemRecurrenceInfoAction {
    action: "setLineItemRecurrenceInfo";
    lineItemId?: string;
    lineItemKey?: string;
    recurrenceInfo?: LineItemRecurrenceInfoDraft;
}

Hierarchy (View Summary)

Properties

action: "setLineItemRecurrenceInfo"
lineItemId?: string

id of the LineItem to update. Either lineItemId or lineItemKey is required.

lineItemKey?: string

key of the LineItem to update. Either lineItemId or lineItemKey is required.

Value to set. If empty, any existing value will be removed.