Information about the most recent use of a field.

interface FieldLastUsed {
    type?: "TRACKED" | "NOT_TRACKED" | "NO_INFORMATION";
    value?: string;
}

Properties

Properties

type?: "TRACKED" | "NOT_TRACKED" | "NO_INFORMATION"

Last used value type:

  • TRACKED: field is tracked and a last used date is available.
  • NOT_TRACKED: field is not tracked, last used date is not available.
  • NO_INFORMATION: field is tracked, but no last used date is available.
value?: string

The date when the value of the field last changed.