// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. import type { JsonValue } from "./serde_json/JsonValue"; export type UpdateRowRequest = { primary_key_column: string, primary_key_value: Object, /** * Row data, which is expected to be a map from column name to value. * * Note that the row is represented as a map to allow selective cells as opposed to * Vec. Absence is different from setting a column to NULL. */ row: { [key in string]?: JsonValue }, };