/** * 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. */ /** * Request for a single page of CurationTasks with optional filtering. * @export * @interface ListCurationTaskRequest */ export interface ListCurationTaskRequest { /** * Optional. The synId of the project. If omitted, results are aggregated across projects. * @type {string} * @memberof ListCurationTaskRequest */ projectId?: string; /** * Optional. Filter tasks assigned to specific users or teams. * @type {Array} * @memberof ListCurationTaskRequest */ assigneeIds?: Array; /** * Optional. When true, filter to tasks assigned to the caller or any team the caller belongs to. Cannot be combined with assigneeIds. * @type {boolean} * @memberof ListCurationTaskRequest */ assignedToMe?: boolean; /** * Optional. Filter tasks by their current state. * @type {Array} * @memberof ListCurationTaskRequest */ stateFilter?: Array; /** * Forward the returned 'nextPageToken' to get the next page of results. * @type {string} * @memberof ListCurationTaskRequest */ nextPageToken?: string; } /** * @export */ export declare const ListCurationTaskRequestStateFilterEnum: { readonly NOT_STARTED: "NOT_STARTED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly COMPLETED: "COMPLETED"; readonly CANCELED: "CANCELED"; }; export type ListCurationTaskRequestStateFilterEnum = typeof ListCurationTaskRequestStateFilterEnum[keyof typeof ListCurationTaskRequestStateFilterEnum]; /** * Check if a given object implements the ListCurationTaskRequest interface. */ export declare function instanceOfListCurationTaskRequest(value: object): value is ListCurationTaskRequest; export declare function ListCurationTaskRequestFromJSON(json: any): ListCurationTaskRequest; export declare function ListCurationTaskRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListCurationTaskRequest; export declare function ListCurationTaskRequestToJSON(json: any): ListCurationTaskRequest; export declare function ListCurationTaskRequestToJSONTyped(value?: ListCurationTaskRequest | null, ignoreDiscriminator?: boolean): any;