Interface CustomLineItemStateTransitionMessagePayload

Generated after a successful Transition Custom Line Item State update action.

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

Properties

customLineItemId: string

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) when the transition of the Custom Line Item State was performed.

type: "CustomLineItemStateTransition"

Generated using TypeDoc