Module Values_0.DataTableLockVersionSource

Contains lock version information for different levels of a data table hierarchy. Used for optimistic locking to prevent concurrent modification conflicts. Each component has its own lock version that changes when that component is modified.

Sourcetype nonrec t = {
  1. dataTable : String_.t option;
    (*

    The lock version for the data table itself. Used for optimistic locking and table versioning. Changes with each update to the table's metadata or structure.

    *)
  2. attribute : String_.t option;
    (*

    The lock version for a specific attribute. When the ValueLockLevel is ATTRIBUTE, this version changes when any value for the attribute changes. For other lock levels, it only changes when the attribute's properties are directly updated.

    *)
  3. primaryValues : String_.t option;
    (*

    The lock version for a specific set of primary values (record). This includes the default record even if the table does not have any primary attributes. Used for record-level locking.

    *)
  4. value : String_.t option;
    (*

    The lock version for a specific value. Changes each time the individual value is modified. Used for the finest-grained locking control.

    *)
}
Sourceval make : ?dataTable:??? -> ?attribute:??? -> ?primaryValues:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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