package ez_api

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

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 * 'b | `Header of 'c apikey | `Nosecurity of uninhabited | `Query of 'd apikey ] -> string
Sourceval params : [< `Basic of basic_desc & 'a | `Bearer of bearer_desc & 'b | `Cookie of string apikey * int64 option & '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 * int64 option & '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
OCaml

Innovation. Community. Security.