Files
trailbase/trailbase-core/bindings/UpdateRowRequest.ts
2024-11-28 12:17:17 +01:00

12 lines
541 B
TypeScript

// 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<serde_json::Value>. Absence is different from setting a column to NULL.
*/
row: { [key in string]?: JsonValue }, };