View Source Eversign.RequestBuilder (eversign.com API for digitally signing PDF documents v0.1.0)

Helper functions for building Tesla requests

Link to this section Summary

Functions

Add optional parameters to the request

Add optional parameters to the request

Specify the request method when building a request

Specify the request method when building a request

Link to this section Functions

Link to this function

add_optional_params(request, definitions, list)

View Source
@spec add_optional_params(map(), %{optional(atom()) => atom()}, keyword()) :: map()

Add optional parameters to the request

parameters

Parameters

  • request (Map) - Collected request options
  • definitions (Map) - Map of parameter name to parameter location.
  • options (KeywordList) - The provided optional parameters

returns

Returns

Map

Link to this function

add_param(request, location, key, value)

View Source
@spec add_param(map(), atom(), atom(), any()) :: map()

Add optional parameters to the request

parameters

Parameters

  • request (Map) - Collected request options
  • location (atom) - Where to put the parameter
  • key (atom) - The name of the parameter
  • value (any) - The value of the parameter

returns

Returns

Map

@spec method(map(), atom()) :: map()

Specify the request method when building a request

parameters

Parameters

  • request (Map) - Collected request options
  • m (atom) - Request method

returns

Returns

Map

@spec url(map(), String.t()) :: map()

Specify the request method when building a request

parameters

Parameters

  • request (Map) - Collected request options
  • u (String) - Request URL

returns

Returns

Map