/** * 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 response for a batch SubmissionStatus upload. * @export * @interface BatchUploadResponse */ export interface BatchUploadResponse { /** * The token required to be sent with the subsequent batch. * @type {string} * @memberof BatchUploadResponse */ nextUploadToken?: string; } /** * Check if a given object implements the BatchUploadResponse interface. */ export declare function instanceOfBatchUploadResponse(value: object): value is BatchUploadResponse; export declare function BatchUploadResponseFromJSON(json: any): BatchUploadResponse; export declare function BatchUploadResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchUploadResponse; export declare function BatchUploadResponseToJSON(json: any): BatchUploadResponse; export declare function BatchUploadResponseToJSONTyped(value?: BatchUploadResponse | null, ignoreDiscriminator?: boolean): any;