package ocaml_openapi_generator

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

Module Types.Security_schemeSource

Sourcetype t = {
  1. type_ : string;
  2. description : string option;
  3. name : string option;
  4. in_ : string option;
  5. scheme : string option;
  6. bearer_format : string option;
  7. flows : Oauth_flows.t option;
  8. open_id_connect_url : string option;
}
include Ppx_jsonaf_conv_lib.Jsonafable.S with type t := t
Sourceval t_of_jsonaf : Jsonaf_kernel__.Type.t -> t
Sourceval jsonaf_of_t : t -> Jsonaf_kernel__.Type.t
Sourceval open_id_connect_url : t -> string option
Sourceval flows : t -> Oauth_flows.t option
Sourceval bearer_format : t -> string option
Sourceval scheme : t -> string option
Sourceval in_ : t -> string option
Sourceval name : t -> string option
Sourceval description : t -> string option
Sourceval type_ : t -> string
Sourcemodule Fields : sig ... end