-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathget-organization-fields200-response-data-inner-ui-visibility.ts
More file actions
65 lines (61 loc) · 2.16 KB
/
get-organization-fields200-response-data-inner-ui-visibility.ts
File metadata and controls
65 lines (61 loc) · 2.16 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
/* 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 { GetOrganizationFields200ResponseDataInnerUiVisibilityShowInAddPersonDialog } from './get-organization-fields200-response-data-inner-ui-visibility-show-in-add-person-dialog';
// May contain unused imports in some cases
// @ts-ignore
import { GetPersonFields200ResponseDataInnerUiVisibilityShowInAddDealDialog } from './get-person-fields200-response-data-inner-ui-visibility-show-in-add-deal-dialog';
/**
* UI visibility settings (only included when requested via include_fields parameter)
* @export
* @interface GetOrganizationFields200ResponseDataInnerUiVisibility
*/
export interface GetOrganizationFields200ResponseDataInnerUiVisibility {
/**
* Whether the field is shown in the add modal
* @type {boolean}
*/
'add_visible_flag'?: boolean;
/**
* Whether the field is shown in the details view
* @type {boolean}
*/
'details_visible_flag'?: boolean;
/**
* Whether the field is shown in the organization details view
* @type {boolean}
*/
'org_detail_visible_flag'?: boolean;
/**
* Whether the field is shown in the person details view
* @type {boolean}
*/
'person_detail_visible_flag'?: boolean;
/**
* Whether the field is shown in the deal details view
* @type {boolean}
*/
'deal_detail_visible_flag'?: boolean;
/**
*
* @type {GetPersonFields200ResponseDataInnerUiVisibilityShowInAddDealDialog}
*/
'show_in_add_deal_dialog'?: GetPersonFields200ResponseDataInnerUiVisibilityShowInAddDealDialog;
/**
*
* @type {GetOrganizationFields200ResponseDataInnerUiVisibilityShowInAddPersonDialog}
*/
'show_in_add_person_dialog'?: GetOrganizationFields200ResponseDataInnerUiVisibilityShowInAddPersonDialog;
}