Interface MyCartSetCustomLineItemRecurrenceInfoAction

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

interface MyCartSetCustomLineItemRecurrenceInfoAction {
    action: "setCustomLineItemRecurrenceInfo";
    customLineItemId?: string;
    customLineItemKey?: string;
    recurrenceInfo?: CustomLineItemRecurrenceInfoDraft;
}

Hierarchy (View Summary)

Properties

action: "setCustomLineItemRecurrenceInfo"
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.

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