-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathorganization-item.ts
More file actions
102 lines (98 loc) · 2.59 KB
/
Copy pathorganization-item.ts
File metadata and controls
102 lines (98 loc) · 2.59 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
99
100
101
/* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import { OrganizationItemAddress } from './organization-item-address';
/**
*
* @export
* @interface OrganizationItem
*/
export interface OrganizationItem {
/**
* The ID of the organization
* @type {number}
*/
'id'?: number;
/**
* The name of the organization
* @type {string}
*/
'name'?: string;
/**
* The ID of the user who owns the organization
* @type {number}
*/
'owner_id'?: number;
/**
* The creation date and time of the organization
* @type {string}
*/
'add_time'?: string;
/**
* The last updated date and time of the organization
* @type {string}
*/
'update_time'?: string;
/**
* Whether the organization is deleted or not
* @type {boolean}
*/
'is_deleted'?: boolean;
/**
* The visibility of the organization
* @type {number}
*/
'visible_to'?: number;
/**
*
* @type {OrganizationItemAddress}
*/
'address'?: OrganizationItemAddress;
/**
* The IDs of labels assigned to the organization
* @type {Array<number>}
*/
'label_ids'?: Array<number>;
/**
* The website of the organization
* @type {string}
*/
'website'?: string | null;
/**
* The LinkedIn profile URL of the organization
* @type {string}
*/
'linkedin'?: string | null;
/**
* The industry the organization belongs to
* @type {number}
*/
'industry'?: number | null;
/**
* The annual revenue of the organization
* @type {number}
*/
'annual_revenue'?: number | null;
/**
* The number of employees in the organization
* @type {number}
*/
'employee_count'?: number | null;
/**
* 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; };
}