Change triggered by the Change AttributeDefinition AttributeConstraint update action.

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

Properties

attributeName: string

Name of the updated AttributeDefinition.

change: string
nextValue: string

Value after the change.

previousValue: string

Value before the change.

type: "ChangeAttributeConstraintChange"