/** * 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. */ /** * * @export * @interface DeleteProjectField200ResponseData */ export interface DeleteProjectField200ResponseData { /** * The display name/label of the field * @type {string} */ 'field_name': string; /** * The unique identifier for the field (40-character hash for custom fields) * @type {string} */ 'field_code': string; /** * The type of the field * @type {string} */ 'field_type': string; /** * Whether this is a user-created custom field * @type {boolean} */ 'is_custom_field': boolean; /** * Whether this field is not returned by default in entity responses * @type {boolean} */ 'is_optional_response_field': boolean; /** * Array of available options for enum/set fields, null for other field types * @type {Array} */ 'options'?: Array | null; /** * Array of subfields for complex field types, null for simple field types * @type {Array} */ 'subfields'?: Array | null; }