Interface StandalonePriceValueChangedMessagePayload

Generated after a successful Change Value update action.

interface StandalonePriceValueChangedMessagePayload {
    oldValue?: TypedMoney;
    staged: boolean;
    type: "StandalonePriceValueChanged";
    value: TypedMoney;
}

Properties

oldValue?: TypedMoney

The old value of the updated StandalonePrice. Present on Messages created after 3 February 2023. Optional for backwards compatibility.

staged: boolean

Whether the new value was applied to the current or the staged representation of the StandalonePrice. Staged changes are stored on the StagedStandalonePrice.

type: "StandalonePriceValueChanged"
value: TypedMoney

The new value of the updated StandalonePrice.