interface IFieldValue {
    fieldId?: number;
    fieldName?: string;
    fieldType?: WFieldType;
    groupId?: number;
    hasMoreValues?: boolean;
    isMultiValue?: boolean;
    isRequired?: boolean;
    values?: {
        [key: string]: any;
    }[];
}

Hierarchy (view full)

Implemented by

Properties

fieldId?: number

The ID of the field.

fieldName?: string

The name of the field.

fieldType?: WFieldType

The type of the field. The possible field types are listed below.

groupId?: number

The group id of the multi value field group. If the field is not a part of a multi value field group, then there is no group id.

hasMoreValues?: boolean

A boolean indicating if there are more field values.

isMultiValue?: boolean

A boolean indicating if the represented field supports multiple values.

isRequired?: boolean

A boolean indicating if the represented field must have a value set on entries assigned to a template that the field is a member of.

values?: {
    [key: string]: any;
}[]

The values assigned to the field.