Module Values.StepSource

Represents a step in the pentest job execution pipeline. Steps include preflight, static analysis, pentest, and finalizing.

Sourcetype nonrec t = {
  1. name : StepName.t option;
    (*

    The name of the step. Valid values include PREFLIGHT, STATIC_ANALYSIS, PENTEST, and FINALIZING.

    *)
  2. status : StepStatus.t option;
    (*

    The current status of the step.

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

    The date and time the step was created, in UTC format.

    *)
  4. updatedAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the step was last updated, in UTC format.

    *)
}
Sourceval make : ?name:??? -> ?status:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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