/** * 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 { ColumnModel } from './ColumnModel'; /** * An response to a table schema change request. * @export * @interface TableSchemaChangeResponse */ export interface TableSchemaChangeResponse { /** * * @type {string} * @memberof TableSchemaChangeResponse */ concreteType: TableSchemaChangeResponseConcreteTypeEnum; /** * The resulting schema after the change. * @type {Array} * @memberof TableSchemaChangeResponse */ schema?: Array; } /** * @export */ export declare const TableSchemaChangeResponseConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_table_TableSchemaChangeResponse: "org.sagebionetworks.repo.model.table.TableSchemaChangeResponse"; }; export type TableSchemaChangeResponseConcreteTypeEnum = typeof TableSchemaChangeResponseConcreteTypeEnum[keyof typeof TableSchemaChangeResponseConcreteTypeEnum]; /** * Check if a given object implements the TableSchemaChangeResponse interface. */ export declare function instanceOfTableSchemaChangeResponse(value: object): value is TableSchemaChangeResponse; export declare function TableSchemaChangeResponseFromJSON(json: any): TableSchemaChangeResponse; export declare function TableSchemaChangeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TableSchemaChangeResponse; export declare function TableSchemaChangeResponseToJSON(json: any): TableSchemaChangeResponse; export declare function TableSchemaChangeResponseToJSONTyped(value?: TableSchemaChangeResponse | null, ignoreDiscriminator?: boolean): any;