Module Values.FieldErrorSource

Object for errors on fields.

Sourcetype nonrec t = {
  1. id : FieldId.t option;
    (*

    The field identifier that caused the error.

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

    The error code from getting a field.

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

    The error message from getting a field.

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