/** * 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 { ValidationSummaryStatistics } from './ValidationSummaryStatistics'; /** * The response for a grid record set export request. * @export * @interface GridRecordSetExportResponse */ export interface GridRecordSetExportResponse { /** * * @type {string} * @memberof GridRecordSetExportResponse */ concreteType: GridRecordSetExportResponseConcreteTypeEnum; /** * The session ID of the exported grid. * @type {string} * @memberof GridRecordSetExportResponse */ sessionId?: string; /** * The id of the record set entity where the grid data was exported to. * @type {string} * @memberof GridRecordSetExportResponse */ recordSetId?: string; /** * The version number of the record set entity where the grid data was exported to. * @type {number} * @memberof GridRecordSetExportResponse */ recordSetVersionNumber?: number; /** * * @type {ValidationSummaryStatistics} * @memberof GridRecordSetExportResponse */ validationSummaryStatistics?: ValidationSummaryStatistics; /** * The id of the file handle that points to a CSV file containing detailed validation results for each row exported from the grid. * @type {string} * @memberof GridRecordSetExportResponse */ validationFileHandleId?: string; } /** * @export */ export declare const GridRecordSetExportResponseConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_grid_GridRecordSetExportResponse: "org.sagebionetworks.repo.model.grid.GridRecordSetExportResponse"; }; export type GridRecordSetExportResponseConcreteTypeEnum = typeof GridRecordSetExportResponseConcreteTypeEnum[keyof typeof GridRecordSetExportResponseConcreteTypeEnum]; /** * Check if a given object implements the GridRecordSetExportResponse interface. */ export declare function instanceOfGridRecordSetExportResponse(value: object): value is GridRecordSetExportResponse; export declare function GridRecordSetExportResponseFromJSON(json: any): GridRecordSetExportResponse; export declare function GridRecordSetExportResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GridRecordSetExportResponse; export declare function GridRecordSetExportResponseToJSON(json: any): GridRecordSetExportResponse; export declare function GridRecordSetExportResponseToJSONTyped(value?: GridRecordSetExportResponse | null, ignoreDiscriminator?: boolean): any;