Represents a field that will be assigned to the entry.

interface IFieldToUpdate {
    name: string;
    values?: string[];
}

Implemented by

Properties

Properties

name: string

The name of the field that will be assigned to the entry.

values?: string[]

The field values that will be assigned to the field.