/** * Pipedrive API v1 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.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. */ import { DealAllOfCreatorUserId } from './deal-all-of-creator-user-id'; import { DealOrganizationDataWithId } from './deal-organization-data-with-id'; import { DealPersonDataWithId } from './deal-person-data-with-id'; import { DealUserDataWithId } from './deal-user-data-with-id'; /** * * @export * @interface DealAllOf */ export interface DealAllOf { /** * The ID of the deal * @type {number} */ 'id'?: number; /** * * @type {DealAllOfCreatorUserId} */ 'creator_user_id'?: DealAllOfCreatorUserId; /** * * @type {DealUserDataWithId} */ 'user_id'?: DealUserDataWithId; /** * * @type {DealPersonDataWithId} */ 'person_id'?: DealPersonDataWithId; /** * * @type {DealOrganizationDataWithId} */ 'org_id'?: DealOrganizationDataWithId; }