/** * 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. */ /** * The pipeline object * @export * @interface UpsertPipelineResponseDataData */ export interface UpsertPipelineResponseDataData { /** * The ID of the pipeline * @type {number} */ 'id'?: number; /** * The name of the pipeline * @type {string} */ 'name'?: string; /** * Defines the order of pipelines. The pipeline with the lowest `order_nr` is considered the default. * @type {number} */ 'order_nr'?: number; /** * Whether this pipeline is marked as deleted or not * @type {boolean} */ 'is_deleted'?: boolean; /** * Whether deal probability is disabled or enabled for this pipeline * @type {boolean} */ 'is_deal_probability_enabled'?: boolean; /** * The pipeline creation time * @type {string} */ 'add_time'?: string; /** * The pipeline update time * @type {string} */ 'update_time'?: string; }