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

    Interface CustomLineItemStateTransitionMessagePayload

    Generated after a successful Transition CustomLineItem State update action.

    interface CustomLineItemStateTransitionMessagePayload {
        customLineItemId: string;
        customLineItemKey?: string;
        fromState: StateReference;
        quantity: number;
        toState: StateReference;
        transitionDate: string;
        type: "CustomLineItemStateTransition";
    }

    Hierarchy (View Summary)

    Index

    Properties

    customLineItemId: string

    Unique identifier of the Custom Line Item.

    customLineItemKey?: string

    User-defined unique identifier of the Custom Line Item.

    fromState: StateReference

    State the Custom Line Item was transitioned from.

    quantity: number

    Number of Custom Line Items for which the State was transitioned.

    State the Custom Line Item was transitioned to.

    transitionDate: string

    Date and time (UTC) the transition of the Custom Line Item State was performed.

    type: "CustomLineItemStateTransition"