Module Values_2.TableVersionSource

Specifies a version of a table.

Sourcetype nonrec t = {
  1. table : Table.t option;
    (*

    The table in question.

    *)
  2. versionId : Values_0.VersionString.t option;
    (*

    The ID value that identifies this table version. A VersionId is a string representation of an integer. Each version is incremented by 1.

    *)
}
Sourceval make : ?table:??? -> ?versionId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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