Skip to main content

Type Alias: DatasetAppendRow

type DatasetAppendRow = object;
Defined in: src/types/new-api.types.ts DatasetAppendRow

Properties

editType?

optional editType: "append_row";
Defined in: src/types/new-api.types.ts Edit Type

rowId?

optional rowId: string | null;
Defined in: src/types/new-api.types.ts Row Id

values

values: object;
Defined in: src/types/new-api.types.ts Values

Index Signature

[key: string]:
  | null
  | string
  | number
  | {
[key: string]: null | string | number;
}