If the existing State has set transitions, there must be a direct transition to the new State. If transitions is not set, no validation is performed. Produces the ProductStateTransition Message.

interface ProductTransitionStateAction {
    action: "transitionState";
    force?: boolean;
    state?: StateResourceIdentifier;
}

Properties

Properties

action: "transitionState"
force?: boolean

If true, validations are disabled.

The State to transition to. If there is no existing State, this must be an initial State.

Generated using TypeDoc