Updating the value of a StandalonePrice produces the StandalonePriceValueChangedMessage.

interface StandalonePriceChangeValueAction {
    action: "changeValue";
    staged?: boolean;
    value: _Money;
}

Properties

Properties

action: "changeValue"
staged?: boolean

If set to true the update action applies to the StagedStandalonePrice. If set to false, the update action applies to the current StandalonePrice.

value: _Money

New value to set. Must not be empty.

To set the money value in high precision, use [HighPrecisionMoneyDraft](ctp:api:type:HighPrecisionMoneyDraft).