Module Values.UpdateHITReviewStatusRequestSource

The UpdateHITReviewStatus operation updates the status of a HIT. If the status is Reviewable, this operation can update the status to Reviewing, or it can revert a Reviewing HIT back to the Reviewable status.

Sourcetype nonrec t = {
  1. hITId : EntityId.t;
    (*

    The ID of the HIT to update.

    *)
  2. revert : Boolean.t option;
    (*

    Specifies how to update the HIT status. Default is False. Setting this to false will only transition a HIT from Reviewable to Reviewing Setting this to true will only transition a HIT from Reviewing to Reviewable

    *)
}
Sourceval context_ : string
Sourceval make : ?revert:??? -> hITId:EntityId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of EntityId.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