/** * Pipedrive API v1 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.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 UpdateFieldRequest */ export interface UpdateFieldRequest { /** * The name of the field * @type {string} */ 'name'?: string; /** * When `field_type` is either set or enum, possible options must be supplied as a JSON-encoded sequential array of objects. All active items must be supplied and already existing items must have their ID supplied. New items only require a label. Example: `[{\"id\":123,\"label\":\"Existing Item\"},{\"label\":\"New Item\"}]` * @type {Array} */ 'options'?: Array; /** * Whether the field is available in \'add new\' modal or not (both in web and mobile app) * @type {boolean} */ 'add_visible_flag'?: boolean; }