|
| 1 | +/* tslint:disable */ |
| 2 | +/* eslint-disable */ |
| 3 | +/** |
| 4 | + * Pipedrive API v1 |
| 5 | + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) |
| 6 | + * |
| 7 | + * The version of the OpenAPI document: 1.0.0 |
| 8 | + * |
| 9 | + * |
| 10 | + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). |
| 11 | + * https://openapi-generator.tech |
| 12 | + * Do not edit the class manually. |
| 13 | + */ |
| 14 | + |
| 15 | + |
| 16 | +// May contain unused imports in some cases |
| 17 | +// @ts-ignore |
| 18 | +import { DealParticipantItemPersonId } from './deal-participant-item-person-id'; |
| 19 | +// May contain unused imports in some cases |
| 20 | +// @ts-ignore |
| 21 | +import { DealParticipantItemRelatedItemData } from './deal-participant-item-related-item-data'; |
| 22 | +// May contain unused imports in some cases |
| 23 | +// @ts-ignore |
| 24 | +import { GetUserResponse } from './get-user-response'; |
| 25 | +// May contain unused imports in some cases |
| 26 | +// @ts-ignore |
| 27 | +import { Person } from './person'; |
| 28 | + |
| 29 | +/** |
| 30 | +* |
| 31 | +* @export |
| 32 | +* @interface DealParticipantItem |
| 33 | +*/ |
| 34 | +export interface DealParticipantItem { |
| 35 | + /** |
| 36 | + * The ID of the participant |
| 37 | + * @type {number} |
| 38 | + */ |
| 39 | + 'id'?: number; |
| 40 | + /** |
| 41 | + * |
| 42 | + * @type {DealParticipantItemPersonId} |
| 43 | + */ |
| 44 | + 'person_id'?: DealParticipantItemPersonId; |
| 45 | + /** |
| 46 | + * The date and time when the participant was added. Format: YYYY-MM-DD HH:MM:SS |
| 47 | + * @type {string} |
| 48 | + */ |
| 49 | + 'add_time'?: string; |
| 50 | + /** |
| 51 | + * Whether the participant is active or not |
| 52 | + * @type {boolean} |
| 53 | + */ |
| 54 | + 'active_flag'?: boolean; |
| 55 | + /** |
| 56 | + * |
| 57 | + * @type {DealParticipantItemRelatedItemData} |
| 58 | + */ |
| 59 | + 'related_item_data'?: DealParticipantItemRelatedItemData; |
| 60 | + /** |
| 61 | + * |
| 62 | + * @type {Person} |
| 63 | + */ |
| 64 | + 'person'?: Person; |
| 65 | + /** |
| 66 | + * |
| 67 | + * @type {GetUserResponse} |
| 68 | + */ |
| 69 | + 'added_by_user_id'?: GetUserResponse; |
| 70 | + /** |
| 71 | + * The type of the related item |
| 72 | + * @type {string} |
| 73 | + */ |
| 74 | + 'related_item_type'?: string; |
| 75 | + /** |
| 76 | + * The ID of the related item |
| 77 | + * @type {number} |
| 78 | + */ |
| 79 | + 'related_item_id'?: number; |
| 80 | +} |
| 81 | + |
0 commit comments