Packages

Elixir library for the Force.com / SalesForce / SFDC REST API

Retired package: Release invalid - broken -- does not compile

Current section

Files

Jump to
astrox lib astrox api.ex
Raw

lib/astrox/api.ex

defmodule Astrox.Api do
@moduledoc """
Behavior for requests to Salesforce API
"""
@type method :: :get | :put | :post | :patch | :delete
@type astrox_response :: map | {number, any} | String.t()
@callback raw_request(method, String.t(), map | String.t(), list, list) :: astrox_response
end