Values.StepSourceRepresents a step in the pentest job execution pipeline. Steps include preflight, static analysis, pentest, and finalizing.
type nonrec t = {name : StepName.t option;The name of the step. Valid values include PREFLIGHT, STATIC_ANALYSIS, PENTEST, and FINALIZING.
*)status : StepStatus.t option;The current status of the step.
*)createdAt : SyntheticTimestamp_date_time.t option;The date and time the step was created, in UTC format.
*)updatedAt : SyntheticTimestamp_date_time.t option;The date and time the step was last updated, in UTC format.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string | `Timestamp of SyntheticTimestamp_date_time.t ])
list ]