@gradientedge/commercetools-utils
    Preparing search index...

    Interface CartSetLineItemRecurrenceInfoAction

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

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

    Hierarchy (View Summary)

    Index

    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.