Module Values.PentestJobSummarySource

Contains summary information about a pentest job.

Sourcetype nonrec t = {
  1. pentestJobId : String_.t option;
    (*

    The unique identifier of the pentest job.

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

    The unique identifier of the pentest associated with the job.

    *)
  3. title : String_.t option;
    (*

    The title of the pentest job.

    *)
  4. status : JobStatus.t option;
    (*

    The current status of the pentest job.

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

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

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

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

    *)
}
Sourceval make : ?pentestJobId:??? -> ?pentestId:??? -> ?title:??? -> ?status:??? -> ?createdAt:??? -> ?updatedAt:??? -> 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