Module Values_0.HttpContextSource

Specifies the HTTP context to use for the test authorizer request.

Sourcetype nonrec t = {
  1. headers : HttpHeaders.t option;
    (*

    The header keys and values in an HTTP authorization request.

    *)
  2. queryString : HttpQueryString.t option;
    (*

    The query string keys and values in an HTTP authorization request.

    *)
}
Sourceval make : ?headers:??? -> ?queryString:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of HttpHeaderName.t ] * [> `String of HttpHeaderValue.t ]) list | `String of HttpQueryString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t