Module Values.CodeReviewJobTaskSummarySource

Contains summary information about a code review job task.

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

    The unique identifier of the task.

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

    The unique identifier of the code review associated with the task.

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

    The unique identifier of the code review job that contains the task.

    *)
  4. agentSpaceId : String_.t option;
    (*

    The unique identifier of the agent space.

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

    The title of the task.

    *)
  6. riskType : RiskType.t option;
    (*

    The type of security risk the task is testing for.

    *)
  7. executionStatus : TaskExecutionStatus.t option;
    (*

    The current execution status of the task.

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

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

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

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

    *)
}
Sourceval make : ?taskId:??? -> ?codeReviewId:??? -> ?codeReviewJobId:??? -> ?agentSpaceId:??? -> ?title:??? -> ?riskType:??? -> ?executionStatus:??? -> ?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