Module Values_0.BatchDescribeDataTableValueSuccessResultSource

A batch describe data table value success result.

Sourcetype nonrec t = {
  1. recordId : DataTableId.t option;
    (*

    The result's record ID.

    *)
  2. attributeId : DataTableId.t option;
    (*

    The result's attribute ID.

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

    The result's primary values.

    *)
  4. attributeName : DataTableName.t option;
    (*

    The result's attribute name.

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

    The result's value.

    *)
  6. lockVersion : DataTableLockVersion.t option;
    (*

    The result's lock version.

    *)
  7. lastModifiedTime : Timestamp.t option;
    (*

    The result's last modified time.

    *)
  8. lastModifiedRegion : RegionName.t option;
    (*

    The result's last modified region.

    *)
}
Sourceval make : ?recordId:??? -> ?attributeId:??? -> ?primaryValues:??? -> ?attributeName:??? -> ?value:??? -> ?lockVersion:??? -> ?lastModifiedTime:??? -> ?lastModifiedRegion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of DataTableName.t ]) list ] list | `String of DataTableId.t | `Structure of (string * [> `String of String_.t ]) list | `Timestamp of 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