/** * 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 { AppendableRowSet } from './AppendableRowSet'; /** * * @export * @interface AppendableRowSetRequest */ export interface AppendableRowSetRequest { /** * * @type {string} * @memberof AppendableRowSetRequest */ concreteType: AppendableRowSetRequestConcreteTypeEnum; /** * * @type {string} * @memberof AppendableRowSetRequest */ entityId?: string; /** * * @type {AppendableRowSet} * @memberof AppendableRowSetRequest */ toAppend?: AppendableRowSet; } /** * @export */ export declare const AppendableRowSetRequestConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_table_AppendableRowSetRequest: "org.sagebionetworks.repo.model.table.AppendableRowSetRequest"; }; export type AppendableRowSetRequestConcreteTypeEnum = typeof AppendableRowSetRequestConcreteTypeEnum[keyof typeof AppendableRowSetRequestConcreteTypeEnum]; /** * Check if a given object implements the AppendableRowSetRequest interface. */ export declare function instanceOfAppendableRowSetRequest(value: object): value is AppendableRowSetRequest; export declare function AppendableRowSetRequestFromJSON(json: any): AppendableRowSetRequest; export declare function AppendableRowSetRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AppendableRowSetRequest; export declare function AppendableRowSetRequestToJSON(json: any): AppendableRowSetRequest; export declare function AppendableRowSetRequestToJSONTyped(value?: AppendableRowSetRequest | null, ignoreDiscriminator?: boolean): any;