/** * 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. */ /** * * @export * @interface OrganizationDataWithIdAllOf1 */ export interface OrganizationDataWithIdAllOf1 { /** * The name of the organization associated with the item * @type {string} */ 'name'?: string; /** * The number of people connected with the organization that is associated with the item * @type {number} */ 'people_count'?: number; /** * The ID of the owner of the organization that is associated with the item * @type {number} */ 'owner_id'?: number; /** * The address of the organization * @type {string} */ 'address'?: string | null; /** * The BCC email of the organization associated with the item * @type {string} */ 'cc_email'?: string | null; }