Packages

A blazing fast SDK for the DealCloud & OnePlace CRM in pure Elixir.

Current section

Files

Jump to
dealcloud lib impl data history.ex
Raw

lib/impl/data/history.ex

defmodule Dealcloud.Impl.Data.History do
@moduledoc false
alias Dealcloud.Impl.Data
@name "getHistoricalData"
@spec get(
Dealcloud.Data.HistoryQuery.t(),
Dealcloud.Auth.t()
) :: any
def get(body, config), do: ["entrydata", @name] |> Data.post(body, %{}, config)
end