Module Values_1.XMLClassifierSource

A classifier for XML content.

Sourcetype nonrec t = {
  1. name : Values_0.NameString.t option;
    (*

    The name of the classifier.

    *)
  2. classification : Classification.t option;
    (*

    An identifier of the data format that the classifier matches.

    *)
  3. creationTime : Values_0.Timestamp.t option;
    (*

    The time that this classifier was registered.

    *)
  4. lastUpdated : Values_0.Timestamp.t option;
    (*

    The time that this classifier was last updated.

    *)
  5. version : Values_0.VersionId.t option;
    (*

    The version of this classifier.

    *)
  6. rowTag : RowTag.t option;
    (*

    The XML tag designating the element that contains each record in an XML document being parsed. This can't identify a self-closing element (closed by />). An empty row element that contains only attributes can be parsed as long as it ends with a closing tag (for example, <row item_a="A" item_b="B"></row> is okay, but <row item_a="A" item_b="B" /> is not).

    *)
}
Sourceval make : ?name:??? -> ?classification:??? -> ?creationTime:??? -> ?lastUpdated:??? -> ?version:??? -> ?rowTag:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Values_0.VersionId.t | `String of Values_0.NameString.t | `Timestamp of Values_0.Timestamp.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