/** * 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 { TableUpdateResponse } from './TableUpdateResponse'; /** * An AsynchronousResponseBody returned from a table update transaction. * @export * @interface TableUpdateTransactionResponse */ export interface TableUpdateTransactionResponse { /** * * @type {string} * @memberof TableUpdateTransactionResponse */ concreteType: TableUpdateTransactionResponseConcreteTypeEnum; /** * List of responses. There will be one response for each request in the transaction. * @type {Array} * @memberof TableUpdateTransactionResponse */ results?: Array; /** * The version number of the snapshot. Returned only, if a new snapshot was requested. * @type {number} * @memberof TableUpdateTransactionResponse */ snapshotVersionNumber?: number; } /** * @export */ export declare const TableUpdateTransactionResponseConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_table_TableUpdateTransactionResponse: "org.sagebionetworks.repo.model.table.TableUpdateTransactionResponse"; }; export type TableUpdateTransactionResponseConcreteTypeEnum = typeof TableUpdateTransactionResponseConcreteTypeEnum[keyof typeof TableUpdateTransactionResponseConcreteTypeEnum]; /** * Check if a given object implements the TableUpdateTransactionResponse interface. */ export declare function instanceOfTableUpdateTransactionResponse(value: object): value is TableUpdateTransactionResponse; export declare function TableUpdateTransactionResponseFromJSON(json: any): TableUpdateTransactionResponse; export declare function TableUpdateTransactionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TableUpdateTransactionResponse; export declare function TableUpdateTransactionResponseToJSON(json: any): TableUpdateTransactionResponse; export declare function TableUpdateTransactionResponseToJSONTyped(value?: TableUpdateTransactionResponse | null, ignoreDiscriminator?: boolean): any;