Module Values.NotifyWorkersFailureStatusSource

When MTurk encounters an issue with notifying the Workers you specified, it returns back this object with failure details.

Sourcetype nonrec t = {
  1. notifyWorkersFailureCode : NotifyWorkersFailureCode.t option;
    (*

    Encoded value for the failure type.

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

    A message detailing the reason the Worker could not be notified.

    *)
  3. workerId : CustomerId.t option;
    (*

    The ID of the Worker.

    *)
}
Sourceval make : ?notifyWorkersFailureCode:??? -> ?notifyWorkersFailureMessage:??? -> ?workerId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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