Module Values.EventErrorSource

Error information for an event.

Sourcetype nonrec t = {
  1. payload : ErrorObject.t option;
    (*

    The error payload.

    *)
  2. truncated : Truncated.t option;
    (*

    Indicates if the error payload was truncated due to size limits.

    *)
}
Sourceval make : ?payload:??? -> ?truncated:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Truncated.t | `Structure of (string * [> `List of [> `String of StackTraceEntry.t ] list | `String of ErrorMessage.t ]) list ]) 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