Interface ProjectV2ItemFieldValue

Source
Expand description

Field value interface for project item fields.

remarks

Represents a field value that can be either a number or a date. Only one of the properties will be populated depending on the field type.

interface ProjectV2ItemFieldValue {
    date?: string | null;
    number?: number | null;
}

Properties§

§date?: string | null

The date value if the field is a date type

§number?: number | null

The numeric value if the field is a number type