package ez_api

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module EzCohttp_lwt.LegacySource

Sourcetype (!'arg, !'input, !'output, 'error, 'a) service = (unit, 'arg, 'input, 'output) EzAPI.Legacy.service constraint 'a = [< EzAPI.Security.scheme ]
Sourcetype (!'output, 'error, 'a) service0 = 'output EzAPI.Legacy.service0 constraint 'a = [< EzAPI.Security.scheme ]
Sourcetype (!'arg, !'output, 'error, 'a) service1 = ('arg, 'output) EzAPI.Legacy.service1 constraint 'a = [< EzAPI.Security.scheme ]
Sourcetype (!'arg1, !'arg2, !'output, 'error, 'a) service2 = ('arg1, 'arg2, 'output) EzAPI.Legacy.service2 constraint 'a = [< EzAPI.Security.scheme ]
Sourcetype (!'input, !'output, 'error, 'a) post_service0 = ('input, 'output) EzAPI.Legacy.post_service0 constraint 'a = [< EzAPI.Security.scheme ]
Sourcetype (!'arg, !'input, !'output, 'error, 'a) post_service1 = ('arg, 'input, 'output) EzAPI.Legacy.post_service1 constraint 'a = [< EzAPI.Security.scheme ]
Sourcetype (!'arg1, !'arg2, !'input, !'output, 'error, 'a) post_service2 = ('arg1, 'arg2, 'input, 'output) EzAPI.Legacy.post_service2 constraint 'a = [< EzAPI.Security.scheme ]
Sourcetype _ api_error = int * string option
Sourceval get0 : ?post:??? -> ?headers:??? -> ?params:??? -> ?msg:??? -> EzAPI.base_url -> ('output, 'error, [< EzAPI.Security.scheme ]) service0 -> ('output, 'error api_error) result Lwt.t
Sourceval get1 : ?post:??? -> ?headers:??? -> ?params:??? -> ?msg:??? -> EzAPI.base_url -> ('arg, 'output, 'error, [< EzAPI.Security.scheme ]) service1 -> 'arg -> ('output, 'error api_error) result Lwt.t
Sourceval get2 : ?post:??? -> ?headers:??? -> ?params:??? -> ?msg:??? -> EzAPI.base_url -> ('arg1, 'arg2, 'output, 'error, [< EzAPI.Security.scheme ]) service2 -> 'arg1 -> 'arg2 -> ('output, 'error api_error) result Lwt.t
Sourceval post0 : ?headers:??? -> ?params:??? -> ?msg:??? -> ?url_encode:??? -> input:'input -> EzAPI.base_url -> ('input, 'output, 'error, [< EzAPI.Security.scheme ]) post_service0 -> ('output, 'error api_error) result Lwt.t
Sourceval post1 : ?headers:??? -> ?params:??? -> ?msg:??? -> ?url_encode:??? -> input:'input -> EzAPI.base_url -> ('arg, 'input, 'output, 'error, [< EzAPI.Security.scheme ]) post_service1 -> 'arg -> ('output, 'error api_error) result Lwt.t
Sourceval post2 : ?headers:??? -> ?params:??? -> ?msg:??? -> ?url_encode:??? -> input:'input -> EzAPI.base_url -> ('arg1, 'arg2, 'input, 'output, 'error, [< EzAPI.Security.scheme ]) post_service2 -> 'arg1 -> 'arg2 -> ('output, 'error api_error) result Lwt.t
Sourceval request : ?headers:??? -> ?params:??? -> ?msg:??? -> ?post:??? -> ?url_encode:??? -> input:'input -> EzAPI.base_url -> ('arg, 'input, 'output, 'error, [< EzAPI.Security.scheme ]) service -> 'arg -> ('output, 'error api_error) result Lwt.t
Sourceval handle_error : ('a -> string option) -> 'a api_error -> int * string option
Sourceval string_of_error : ('a -> string option) -> 'a api_error -> string
Sourceval pp_error : ?error:??? -> Format.formatter -> 'a api_error -> unit
Sourceval wrap : ('a, 'e api_error) result Lwt.t -> ('a, int * [ `known of 'e | `unknown of string option ]) result Lwt.t