View Source ExPipedrive.Filter (ex_pipedrive v0.2.0)

This module and enclosed structs represent a filter in pipedrive.

conditions is decoded as a plain map — see ExPipedrive.Filters for the nested AND/OR condition-group shape Pipedrive expects.

Summary

Types

@type t() :: %ExPipedrive.Filter{
  active_flag: boolean() | nil,
  add_time: DateTime.t() | nil,
  conditions: map() | nil,
  custom_view_id: pos_integer() | nil,
  id: pos_integer() | nil,
  name: String.t() | nil,
  original_object: map() | nil,
  temporary_flag: boolean() | nil,
  type: String.t() | nil,
  update_time: DateTime.t() | nil,
  user_id: pos_integer() | nil,
  visible_to: String.t() | nil
}

Functions