Module Values.BatchGetSchemaErrorSource

An error describing why a schema could not be fetched.

Sourcetype nonrec t = {
  1. name : TableAlias.t option;
    (*

    An error name for the error.

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

    An error code for the error.

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

    An error message for the error.

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