-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathupdate-project-request.ts
More file actions
99 lines (95 loc) · 2.6 KB
/
Copy pathupdate-project-request.ts
File metadata and controls
99 lines (95 loc) · 2.6 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/* 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.
*/
/**
*
* @export
* @interface UpdateProjectRequest
*/
export interface UpdateProjectRequest {
/**
* The title of the project
* @type {string}
*/
'title'?: string;
/**
* The description of the project
* @type {string}
*/
'description'?: string;
/**
* The status of the project
* @type {string}
*/
'status'?: string;
/**
* The ID of the board this project is associated with
* @type {number}
*/
'board_id'?: number;
/**
* The ID of the phase this project is associated with
* @type {number}
*/
'phase_id'?: number;
/**
* The ID of the user who owns the project
* @type {number}
*/
'owner_id'?: number;
/**
* The start date of the project. Format: YYYY-MM-DD
* @type {string}
*/
'start_date'?: string;
/**
* The end date of the project. Format: YYYY-MM-DD
* @type {string}
*/
'end_date'?: string;
/**
* An array of IDs of the deals this project is associated with
* @type {Array<number>}
*/
'deal_ids'?: Array<number>;
/**
* An array of IDs of the persons this project is associated with
* @type {Array<number>}
*/
'person_ids'?: Array<number>;
/**
* An array of IDs of the organizations this project is associated with
* @type {Array<number>}
*/
'org_ids'?: Array<number>;
/**
* An array of IDs of the labels this project has
* @type {Array<number>}
*/
'label_ids'?: Array<number>;
/**
* The health status of the project
* @type {number}
*/
'health_status'?: number;
/**
* The ID of the template the project will be based on. Only used when creating a new project.
* @type {number}
*/
'template_id'?: number;
/**
* An object where each key represents a custom field. All custom fields are referenced as randomly generated 40-character hashes. To clear a custom field value, set it to `null`. For multi-option fields (field type `set`), use `null` to clear the selection — sending an empty array `[]` is not supported and will result in a validation error.
* @type {{ [key: string]: any | undefined; }}
*/
'custom_fields'?: { [key: string]: any | undefined; };
}