Module Values_2.StatusDetails

A structure containing information about an asynchronous change to a table.

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

    A Table object representing the requested changes.

    *)
  2. viewValidations : ViewValidationList.t option;
    (*

    A list of ViewValidation objects that contain information for an analytical engine to validate a view.

    *)
}
Sourceval make : ?requestedChange:Table.t -> ?viewValidations:ViewValidationList.t -> unit -> t
Sourceval to_value : t -> Awso.Botodata.value
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t