module SingleError:sig..end
type t = {
|
domain : |
(* |
The domain in which the error occured
| *) |
|
reason : |
(* |
The reason the error was thrown
| *) |
|
message : |
(* |
The error message
| *) |
|
locationType : |
(* |
Type of the location
| *) |
|
location : |
(* |
Location where the error was thrown
| *) |
|
extendedHelp : |
val domain : (t, string) GapiLens.t
val reason : (t, string) GapiLens.t
val message : (t, string) GapiLens.t
val locationType : (t, string) GapiLens.t
val location : (t, string) GapiLens.t
val extendedHelp : (t, string) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t ->
GapiJson.json_data_model -> t