Interface LineItemStateTransitionMessagePayload

Generated after a successful Transition Line Item State update action.

interface LineItemStateTransitionMessagePayload {
    fromState: StateReference;
    lineItemId: string;
    quantity: number;
    toState: StateReference;
    transitionDate: string;
    type: "LineItemStateTransition";
}

Properties

fromState: StateReference

State the Line Item was transitioned from.

lineItemId: string

Unique identifier of the Line Item.

quantity: number

Number of Line Items for which the State was transitioned.

State the Line Item was transitioned to.

transitionDate: string

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

type: "LineItemStateTransition"

Generated using TypeDoc