A change item.

interface ChangeDetails {
    field?: string;
    fieldId?: string;
    fieldtype?: string;
    from?: null | string;
    fromString?: null | string;
    to?: null | string;
    toString: null | string;
}

Properties

field?: string

The name of the field changed.

fieldId?: string

The ID of the field changed.

fieldtype?: string

The type of the field changed.

from?: null | string

The details of the original value.

fromString?: null | string

The details of the original value as a string.

to?: null | string

The details of the new value.

toString: null | string

The details of the new value as a string.