View Source ExPipedrive.ActivityType (ex_pipedrive v0.2.0)

An activity type in Pipedrive (/api/v1/activityTypes).

:key_string is generated by Pipedrive from :name on create. Built-in types have :is_custom_flag false; custom types are created via the API (admin scope).

Summary

Types

@type key_string() :: binary()
@type t() :: %ExPipedrive.ActivityType{
  active_flag: boolean(),
  add_time: (NaiveDateTime.t() | DateTime.t()) | nil,
  color: String.t() | nil,
  icon_key: String.t() | nil,
  id: pos_integer() | nil,
  is_custom_flag: boolean(),
  key_string: key_string() | nil,
  name: String.t() | nil,
  order_nr: integer() | nil,
  original_object: map() | nil,
  update_time: (NaiveDateTime.t() | DateTime.t()) | nil
}

Functions