/** * 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 BasePipeline */ export interface BasePipeline { /** * The ID of the pipeline * @type {number} */ 'id'?: number; /** * The name of the pipeline * @type {string} */ 'name'?: string; /** * The pipeline title displayed in the URL * @type {string} */ 'url_title'?: string; /** * Defines the order of pipelines. First order (`order_nr=0`) is the default pipeline. * @type {number} */ 'order_nr'?: number; /** * Whether this pipeline will be made inactive (hidden) or active * @type {boolean} */ 'active'?: boolean; /** * Whether deal probability is disabled or enabled for this pipeline * @type {boolean} */ 'deal_probability'?: boolean; /** * The pipeline creation time. Format: YYYY-MM-DD HH:MM:SS. * @type {string} */ 'add_time'?: string; /** * The pipeline update time. Format: YYYY-MM-DD HH:MM:SS. * @type {string} */ 'update_time'?: string; }