Values.CodeReviewJobTaskSummarySourceContains summary information about a code review job task.
type nonrec t = {taskId : String_.t option;The unique identifier of the task.
*)codeReviewId : String_.t option;The unique identifier of the code review associated with the task.
*)codeReviewJobId : String_.t option;The unique identifier of the code review job that contains the task.
*)agentSpaceId : String_.t option;The unique identifier of the agent space.
*)title : String_.t option;The title of the task.
*)riskType : RiskType.t option;The type of security risk the task is testing for.
*)executionStatus : TaskExecutionStatus.t option;The current execution status of the task.
*)createdAt : SyntheticTimestamp_date_time.t option;The date and time the task was created, in UTC format.
*)updatedAt : SyntheticTimestamp_date_time.t option;The date and time the task was last updated, in UTC format.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of String_.t
| `Timestamp of SyntheticTimestamp_date_time.t ])
list ]