package ez_api

  1. Overview
  2. No Docs
Easy API library and tools

Install

dune-project
 Dependency

Authors

Maintainers

Sources

1.1.1.tar.gz
md5=65d5fef737c82120d579d10a1727b8e4
sha512=2ea5c072d5a4c264263264cfd485eadae2bd7f47949dbc9cb4cf93db89640d91542463ed8b9f4d6679f21bbd1efbfa6c224ff36f1807a8d8af9d0568cf8a4292

doc/ez_api/EzAPI/Security/index.html

Module EzAPI.SecuritySource

Sourcetype uninhabited = |
Sourcetype none = [
  1. | `Nosecurity of uninhabited
]
Sourcetype 'a apikey = {
  1. ref_name : string;
  2. name : 'a;
}
Sourcetype bearer_desc = {
  1. bearer_name : string;
  2. format : string option;
}
Sourcetype basic_desc = {
  1. basic_name : string;
}
Sourcetype bearer = [
  1. | `Bearer of bearer_desc
]
Sourcetype basic = [
  1. | `Basic of basic_desc
]
Sourcetype header = [
  1. | `Header of string apikey
]
Sourcetype query = [
  1. | `Query of Param.t apikey
]
Sourcetype scheme = [
  1. | none
  2. | basic
  3. | bearer
  4. | header
  5. | cookie
  6. | query
]
Sourceval unreachable : uninhabited -> 'a
Sourceval ref_name : [< `Basic of basic_desc | `Bearer of bearer_desc | `Cookie of 'a apikey | `Header of 'b apikey | `Nosecurity of uninhabited | `Query of 'c apikey ] -> string
Sourceval params : [< `Basic of basic_desc & 'a | `Bearer of bearer_desc & 'b | `Cookie of string apikey & 'c | `Header of string apikey & 'd | `Nosecurity of uninhabited & 'e | `Query of Param.t apikey & 'f apikey ] list -> 'f list
Sourcemodule StringSet : sig ... end
Sourceval headers : [< `Basic of basic_desc & 'a | `Bearer of bearer_desc & 'b | `Cookie of string apikey & 'c | `Header of string apikey & StringSet.elt apikey | `Nosecurity of uninhabited & 'd | `Query of Param.t apikey & 'e ] list -> StringSet.t
Sourceval header : StringSet.t -> (string * string) list