Values.ReviewActionDetailSourceBoth the AssignmentReviewReport and the HITReviewReport elements contains the ReviewActionDetail data structure. This structure is returned multiple times for each action specified in the Review Policy.
type nonrec t = {actionId : EntityId.t option;The unique identifier for the action.
*)actionName : String_.t option;The nature of the action itself. The Review Policy is responsible for examining the HIT and Assignments, emitting results, and deciding which other actions will be necessary.
*)targetId : EntityId.t option;The specific HITId or AssignmentID targeted by the action.
*)targetType : String_.t option;The type of object in TargetId.
*)status : ReviewActionStatus.t option;The current disposition of the action: INTENDED, SUCCEEDED, FAILED, or CANCELLED.
*)completeTime : Timestamp.t option;The date when the action was completed.
*)result : String_.t option;A description of the outcome of the review.
*)errorCode : String_.t option;Present only when the Results have a FAILED Status.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of EntityId.t
| `Timestamp of Timestamp.t ])
list ]