Module Values.ExecutionContextSource

Contains contextual information about the execution of a pentest job, such as errors, warnings, or informational messages.

Sourcetype nonrec t = {
  1. contextType : ContextType.t option;
    (*

    The type of context. Valid values include ERROR, CLIENT_ERROR, WARNING, and INFO.

    *)
  2. context : String_.t option;
    (*

    The context message.

    *)
  3. timestamp : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the context was recorded, in UTC format.

    *)
}
Sourceval make : ?contextType:??? -> ?context:??? -> ?timestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of SyntheticTimestamp_date_time.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