Change triggered by the Change Quote State update action.

interface ChangeQuoteStateChange {
    change: string;
    nextValue: string;
    previousValue: string;
    type: "ChangeQuoteStateChange";
}

Properties

change: string
nextValue: string

Value after the change.

previousValue: string

Value before the change.

type: "ChangeQuoteStateChange"