Module Values.BatchGetStepErrorSource

The error details for a step that could not be retrieved in a batch get operation.

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

    The farm ID of the step that could not be retrieved.

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

    The queue ID of the step that could not be retrieved.

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

    The job ID of the step that could not be retrieved.

    *)
  4. stepId : StepId.t option;
    (*

    The step ID of the step that could not be retrieved.

    *)
  5. code : BatchGetStepErrorCode.t option;
    (*

    The error code.

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

    The error message.

    *)
}
Sourceval make : ?farmId:??? -> ?queueId:??? -> ?jobId:??? -> ?stepId:??? -> ?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