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

    Interface CartSetCustomLineItemRecurrenceInfoAction

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

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

    Hierarchy (View Summary)

    Index

    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.