Module Values.ParsedQuerySecondaryAddressComponentSource

Information about a secondary address component parsed from the query text.

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

    Start index of the parsed secondary address component in the query text.

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

    End index of the parsed secondary address component in the query text.

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

    Value of the parsed secondary address component.

    *)
  4. number : ParsedQuerySecondaryAddressComponentNumberString.t option;
    (*

    Secondary address number provided in the query.

    *)
  5. designator : ParsedQuerySecondaryAddressComponentDesignatorString.t option;
    (*

    Secondary address designator provided in the query.

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