interface IValueToUpdate {
    position?: number;
    value?: string;
}

Implemented by

Properties

Properties

position?: number

The position of the value in the field. This is 1-indexed for multi value field. It will be ignored for single value field.

value?: string

The value assigned to the field at the position specified.