Module Values.GremlinQueryStatusAttributesSource

Contains status components of a Gremlin query.

Sourcetype nonrec t = {
  1. message : String_.t option;
    (*

    The status message.

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

    The HTTP response code returned fro the Gremlin query request..

    *)
  3. attributes : Document.t option;
    (*

    Attributes of the Gremlin query status.

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