Module Values_2.SchemaVersionNumberSource

A structure containing the schema version information.

Sourcetype nonrec t = {
  1. latestVersion : LatestSchemaVersionBoolean.t option;
    (*

    The latest version available for the schema.

    *)
  2. versionNumber : Values_0.VersionLongNumber.t option;
    (*

    The version number of the schema.

    *)
}
Sourceval make : ?latestVersion:??? -> ?versionNumber:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of LatestSchemaVersionBoolean.t | `Long of Values_0.VersionLongNumber.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