Module Values.ReviewReportSource

Contains both ReviewResult and ReviewAction elements for a particular HIT.

Sourcetype nonrec t = {
  1. reviewResults : ReviewResultDetailList.t option;
    (*

    A list of ReviewResults objects for each action specified in the Review Policy.

    *)
  2. reviewActions : ReviewActionDetailList.t option;
    (*

    A list of ReviewAction objects for each action specified in the Review Policy.

    *)
}
Sourceval make : ?reviewResults:??? -> ?reviewActions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of EntityId.t | `Timestamp of Timestamp.t ]) list ] list ]) 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