Field value interface for project item fields.
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;}
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
Field value interface for project item fields.