A change item.

interface ChangeDetails {
    field?: string;
    fieldId?: string;
    fieldtype?: string;
    from?: string;
    fromString?: string;
    to?: string;
    toString?: 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?: string

The details of the original value.

fromString?: string

The details of the original value as a string.

to?: string

The details of the new value.

toString?: string

The details of the new value as a string.