Interface StandalonePriceValueChangedMessagePayload

Generated after a successful Change Value update action.

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

Properties

oldValue?: _Money

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: _Money

The new value of the updated StandalonePrice.

Generated using TypeDoc