Change triggered by the following update actions:

- [Change AttributeDefinition InputHint](ctp:api:type:ProductTypeChangeInputHintAction) on Product Types.
- [Change InputHint](ctp:api:type:TypeChangeInputHintAction) on Types.
interface ChangeInputHintChange {
    attributeName: string;
    change: string;
    fieldName: string;
    nextValue: string;
    previousValue: string;
    type: "ChangeInputHintChange";
}

Properties

attributeName: string

Name of the updated AttributeDefinition; only present on changes to Product Types.

change: string
fieldName: string

Name of the updated FieldDefinition; only present on changes to Types.

nextValue: string

Value after the change.

previousValue: string

Value before the change.

type: "ChangeInputHintChange"