/** * 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 { AsyncMigrationRequest } from './AsyncMigrationRequest'; import type { FileHandleArchivalRequest } from './FileHandleArchivalRequest'; /** * @type AsynchronousAdminRequestBody * Jobs that that implement this type of AsynchronousRequestBody will only be executable by administrators * @export */ export type AsynchronousAdminRequestBody = { concreteType: 'org.sagebionetworks.repo.model.file.FileHandleArchivalRequest'; } & FileHandleArchivalRequest | { concreteType: 'org.sagebionetworks.repo.model.migration.AsyncMigrationRequest'; } & AsyncMigrationRequest; export declare function AsynchronousAdminRequestBodyFromJSON(json: any): AsynchronousAdminRequestBody; export declare function AsynchronousAdminRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): AsynchronousAdminRequestBody; export declare function AsynchronousAdminRequestBodyToJSON(json: any): any; export declare function AsynchronousAdminRequestBodyToJSONTyped(value?: AsynchronousAdminRequestBody | null, ignoreDiscriminator?: boolean): any;