Module Values.CodeRemediationTaskSource

Represents a code remediation task that was initiated to fix a security finding.

Sourcetype nonrec t = {
  1. status : CodeRemediationTaskStatus.t option;
    (*

    The current status of the code remediation task.

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

    The reason for the current status of the code remediation task.

    *)
  3. taskDetails : CodeRemediationTaskDetailsList.t option;
    (*

    The list of details for the code remediation task, including repository name, code diff link, and pull request link.

    *)
}
Sourceval make : ?status:??? -> ?statusReason:??? -> ?taskDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.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