/** * Pipedrive API v2 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Configuration for highlighting the field at specific stages. * @export * @interface AddProjectFieldRequestImportantFields */ export interface AddProjectFieldRequestImportantFields { [key: string]: any | any; /** * Whether the field is marked as important. When false, the field is not highlighted. When true with empty stage_ids, the field is important everywhere. When true with specific stage_ids, the field is important only at those deal stages. Default is false. * @type {boolean} */ 'enabled'?: boolean; /** * Array of deal stage IDs where this project field should be highlighted as important. Must reference valid, active deal stages. Empty array when enabled is false. * @type {Array} */ 'stage_ids'?: Array; }