Typescript SDK Type Docs
    Preparing search index...

    Interface UnknownChange

    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";
    }

    Hierarchy (View Summary)

    Index

    Properties

    change: string

    Identifier for the type of modification.

    nextValue: any

    Value after the change.

    previousValue: any

    Value before the change.

    type: "UnknownChange"

    Unique discriminator value to reliably deserialize the data type.