Module Values.InspectionDataRequestSource

Contains additional details about the state's execution, including its input and output data processing flow, and HTTP request information.

Sourcetype nonrec t = {
  1. protocol : HTTPProtocol.t option;
    (*

    The protocol used to make the HTTP request.

    *)
  2. method_ : HTTPMethod.t option;
    (*

    The HTTP method used for the HTTP request.

    *)
  3. url : URL.t option;
    (*

    The API endpoint used for the HTTP request.

    *)
  4. headers : HTTPHeaders.t option;
    (*

    The request headers associated with the HTTP request.

    *)
  5. body : HTTPBody.t option;
    (*

    The request body for the HTTP request.

    *)
}
Sourceval make : ?protocol:??? -> ?method_:??? -> ?url:??? -> ?headers:??? -> ?body:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of HTTPProtocol.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