Change triggered when the format of changes on an entity is not identified by Audit Log.

interface UnknownChange {
    change: string;
    nextValue: any;
    previousValue: any;
    type: "UnknownChange";
}

Properties

change: string

Identifier for the type of modification.

nextValue: any

Value after the change.

previousValue: any

Value before the change.

type: "UnknownChange"