Packages

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

Current section

Files

Jump to
dealcloud lib impl schema users.ex
Raw

lib/impl/schema/users.ex

defmodule Dealcloud.Impl.Schema.Users do
@moduledoc false
@name "users"
alias Dealcloud.Impl.Schema
@spec get(Dealcloud.Auth.t()) :: any
def get(config), do: [@name] |> Schema.get(config)
@spec get(map(), Dealcloud.Auth.t()) :: any
def get(params, config), do: [@name] |> Schema.get(params, config)
end