View Source ExPipedrive.CallLog (ex_pipedrive v0.2.0)

This module and enclosed structs represent a call log in pipedrive.

Unlike most Pipedrive entities, id is a Pipedrive-generated hex string (e.g. "CAd92b224eb4a39b5ad8fea92ff0e"), not an integer.

Summary

Types

@type t() :: %ExPipedrive.CallLog{
  activity_id: pos_integer() | nil,
  company_id: pos_integer() | nil,
  deal_id: pos_integer() | nil,
  duration: String.t() | nil,
  end_time: DateTime.t() | nil,
  from_phone_number: String.t() | nil,
  has_recording: boolean() | nil,
  id: String.t() | nil,
  lead_id: String.t() | nil,
  note: String.t() | nil,
  org_id: pos_integer() | nil,
  original_object: map() | nil,
  outcome: String.t() | nil,
  person_id: pos_integer() | nil,
  start_time: DateTime.t() | nil,
  subject: String.t() | nil,
  to_phone_number: String.t() | nil,
  user_id: pos_integer() | nil
}

Functions