/** * 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 OrganizationRelationship */ export interface OrganizationRelationship { /** * The ID of the base organization for the returned calculated values * @type {number} */ 'org_id'?: number; /** * The type of organization relationship * @type {string} */ 'type'?: OrganizationRelationshipTypeConst; /** * The owner of this relationship. If type is `parent`, then the owner is the parent and the linked organization is the daughter. * @type {number} */ 'rel_owner_org_id'?: number; /** * The linked organization in this relationship. If type is `parent`, then the linked organization is the daughter. * @type {number} */ 'rel_linked_org_id'?: number; } export declare const OrganizationRelationshipTypeConst: { readonly parent: "parent"; readonly related: "related"; }; export type OrganizationRelationshipTypeConst = typeof OrganizationRelationshipTypeConst[keyof typeof OrganizationRelationshipTypeConst];