Module Values.BatchUpdateJobErrorSource

The error details for a job that could not be updated in a batch update operation.

Sourcetype nonrec t = {
  1. farmId : FarmId.t option;
    (*

    The farm ID of the job that could not be updated.

    *)
  2. queueId : QueueId.t option;
    (*

    The queue ID of the job that could not be updated.

    *)
  3. jobId : JobId.t option;
    (*

    The job ID of the job that could not be updated.

    *)
  4. code : BatchUpdateJobErrorCode.t option;
    (*

    The error code.

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

    The error message.

    *)
}
Sourceval make : ?farmId:??? -> ?queueId:??? -> ?jobId:??? -> ?code:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FarmId.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