View Source ExPipedrive.Task (ex_pipedrive v0.2.0)

A project task decoded from Pipedrive API v2 /api/v2/tasks responses.

Tasks are action items associated with a project. Write requests use done and milestone (0/1); responses expose is_done and is_milestone.

Summary

Types

@type t() :: %ExPipedrive.Task{
  add_time: (DateTime.t() | NaiveDateTime.t()) | nil,
  assignee_ids: [pos_integer()],
  creator_id: pos_integer() | nil,
  description: String.t() | nil,
  due_date: Date.t() | nil,
  id: pos_integer() | nil,
  is_done: boolean() | nil,
  is_milestone: boolean() | nil,
  marked_as_done_time: (DateTime.t() | NaiveDateTime.t()) | nil,
  original_object: map() | nil,
  parent_task_id: pos_integer() | nil,
  priority: integer() | nil,
  project_id: pos_integer() | nil,
  start_date: Date.t() | nil,
  title: String.t(),
  update_time: (DateTime.t() | NaiveDateTime.t()) | nil
}

Functions