Module Values.ParsedQueryComponentSource

Parsed components in the provided QueryText.

Sourcetype nonrec t = {
  1. startIndex : ParsedQueryComponentStartIndexInteger.t option;
    (*

    Start index of the parsed query component.

    *)
  2. endIndex : ParsedQueryComponentEndIndexInteger.t option;
    (*

    End index of the parsed query component.

    *)
  3. value : ParsedQueryComponentValueString.t option;
    (*

    Value of the parsed query component.

    *)
  4. queryComponent : ParsedQueryComponentQueryComponentString.t option;
    (*

    The address component that the parsed query component corresponds to.

    *)
}
Sourceval make : ?startIndex:??? -> ?endIndex:??? -> ?value:??? -> ?queryComponent:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of ParsedQueryComponentStartIndexInteger.t | `String of ParsedQueryComponentValueString.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