Change triggered by the Set AttributeDefinition InputTip update action.

interface SetInputTipChange {
    attributeName: string;
    change: string;
    nextValue: LocalizedString;
    previousValue: LocalizedString;
    type: "SetInputTipChange";
}

Properties

attributeName: string

Name of the updated AttributeDefinition.

change: string
nextValue: LocalizedString

Value after the change.

previousValue: LocalizedString

Value before the change.

type: "SetInputTipChange"