-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathupsert-pipeline-response-data-data.ts
More file actions
59 lines (55 loc) · 1.31 KB
/
upsert-pipeline-response-data-data.ts
File metadata and controls
59 lines (55 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* tslint:disable */
/* eslint-disable */
/**
* 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;
}