View Source ExPipedrive.OrganizationRelationship (ex_pipedrive v0.2.0)

A relationship between two organizations, from /api/v1/organizationRelationships.

type is "parent" (hierarchical) or "related" (lateral). For "parent", rel_owner_org_id is the parent and rel_linked_org_id is the daughter.

Summary

Types

@type t() :: %ExPipedrive.OrganizationRelationship{
  id: pos_integer() | nil,
  org_id: pos_integer() | nil,
  original_object: map() | nil,
  rel_linked_org_id: pos_integer() | nil,
  rel_owner_org_id: pos_integer() | nil,
  type: String.t() | nil
}

Functions