/** * 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 { CurationTask } from './CurationTask'; import type { TaskStatus } from './TaskStatus'; /** * A bundle containing a CurationTask and its associated TaskStatus. * @export * @interface TaskBundle */ export interface TaskBundle { /** * * @type {CurationTask} * @memberof TaskBundle */ task?: CurationTask; /** * * @type {TaskStatus} * @memberof TaskBundle */ status?: TaskStatus; } /** * Check if a given object implements the TaskBundle interface. */ export declare function instanceOfTaskBundle(value: object): value is TaskBundle; export declare function TaskBundleFromJSON(json: any): TaskBundle; export declare function TaskBundleFromJSONTyped(json: any, ignoreDiscriminator: boolean): TaskBundle; export declare function TaskBundleToJSON(json: any): TaskBundle; export declare function TaskBundleToJSONTyped(value?: TaskBundle | null, ignoreDiscriminator?: boolean): any;