/** * 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. */ /** * The result of a CSV import into the grid. * @export * @interface GridCsvImportResponse */ export interface GridCsvImportResponse { /** * * @type {string} * @memberof GridCsvImportResponse */ concreteType: GridCsvImportResponseConcreteTypeEnum; /** * The grid session ID. * @type {string} * @memberof GridCsvImportResponse */ sessionId?: string; /** * The total number of processed rows. * @type {number} * @memberof GridCsvImportResponse */ totalCount?: number; /** * The number of newly created rows in the grid. * @type {number} * @memberof GridCsvImportResponse */ createdCount?: number; /** * The number of updated rows in the grid. * @type {number} * @memberof GridCsvImportResponse */ updatedCount?: number; } /** * @export */ export declare const GridCsvImportResponseConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_grid_GridCsvImportResponse: "org.sagebionetworks.repo.model.grid.GridCsvImportResponse"; }; export type GridCsvImportResponseConcreteTypeEnum = typeof GridCsvImportResponseConcreteTypeEnum[keyof typeof GridCsvImportResponseConcreteTypeEnum]; /** * Check if a given object implements the GridCsvImportResponse interface. */ export declare function instanceOfGridCsvImportResponse(value: object): value is GridCsvImportResponse; export declare function GridCsvImportResponseFromJSON(json: any): GridCsvImportResponse; export declare function GridCsvImportResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GridCsvImportResponse; export declare function GridCsvImportResponseToJSON(json: any): GridCsvImportResponse; export declare function GridCsvImportResponseToJSONTyped(value?: GridCsvImportResponse | null, ignoreDiscriminator?: boolean): any;