/** * 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 { BaseOrganizationItemAllOfPictureId } from './base-organization-item-all-of-picture-id'; import { Owner } from './owner'; /** * * @export * @interface BaseOrganizationItemAllOf */ export interface BaseOrganizationItemAllOf { /** * The ID of the organization * @type {number} */ 'id'?: number; /** * The ID of the company related to the organization * @type {number} */ 'company_id'?: number; /** * * @type {Owner} */ 'owner_id'?: Owner; /** * The name of the organization * @type {string} */ 'name'?: string; /** * Whether the organization is active or not * @type {boolean} */ 'active_flag'?: boolean; /** * * @type {BaseOrganizationItemAllOfPictureId} */ 'picture_id'?: BaseOrganizationItemAllOfPictureId; /** * The country code of the organization * @type {string} */ 'country_code'?: string | null; /** * The first character of the organization name * @type {string} */ 'first_char'?: string; /** * 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; /** * The visibility group ID of who can see the organization * @type {string} */ 'visible_to'?: string; /** * The label assigned to the organization. When the `label` field is updated, the `label_ids` field value will be overwritten by the `label` field value. * @type {number} */ 'label'?: number; /** * The IDs of labels assigned to the organization. When the `label_ids` field is updated, the `label` field value will be set to the first value of the `label_ids` field. * @type {Array} */ 'label_ids'?: Array; /** * The name of the organization owner * @type {string} */ 'owner_name'?: string; /** * The BCC email associated with the organization * @type {string} */ 'cc_email'?: string; }