/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { PartialRowSet } from './PartialRowSet'; import type { RowSet } from './RowSet'; /** * @type AppendableRowSet * Abstraction for a set of rows that can be appended to a table. * @export */ export type AppendableRowSet = { concreteType: 'org.sagebionetworks.repo.model.table.PartialRowSet'; } & PartialRowSet | { concreteType: 'org.sagebionetworks.repo.model.table.RowSet'; } & RowSet; export declare function AppendableRowSetFromJSON(json: any): AppendableRowSet; export declare function AppendableRowSetFromJSONTyped(json: any, ignoreDiscriminator: boolean): AppendableRowSet; export declare function AppendableRowSetToJSON(json: any): any; export declare function AppendableRowSetToJSONTyped(value?: AppendableRowSet | null, ignoreDiscriminator?: boolean): any;