/** * 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 { TaskBundle } from './TaskBundle'; /** * A single page of CurationTasks. * @export * @interface ListCurationTaskResponse */ export interface ListCurationTaskResponse { /** * Deprecated. Use 'bundlePage' instead. A list of task definitions only. * @type {Array} * @memberof ListCurationTaskResponse */ page?: Array; /** * A list of task bundles containing both the definition and the current status. * @type {Array} * @memberof ListCurationTaskResponse */ bundlePage?: Array; /** * Forward this token to get the next page of results. * @type {string} * @memberof ListCurationTaskResponse */ nextPageToken?: string; } /** * Check if a given object implements the ListCurationTaskResponse interface. */ export declare function instanceOfListCurationTaskResponse(value: object): value is ListCurationTaskResponse; export declare function ListCurationTaskResponseFromJSON(json: any): ListCurationTaskResponse; export declare function ListCurationTaskResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListCurationTaskResponse; export declare function ListCurationTaskResponseToJSON(json: any): ListCurationTaskResponse; export declare function ListCurationTaskResponseToJSONTyped(value?: ListCurationTaskResponse | null, ignoreDiscriminator?: boolean): any;