/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * 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 { TaskPriority } from './TaskPriority'; /** * * @export * @interface Task */ export interface Task { /** * * @type {string} * @memberof Task */ 'id': string; /** * * @type {string} * @memberof Task */ 'title': string; /** * * @type {string} * @memberof Task */ 'description'?: string | null; /** * * @type {string} * @memberof Task */ 'workspaceId': string; /** * * @type {string} * @memberof Task */ 'userId': string | null; /** * * @type {string} * @memberof Task */ 'dueDate': string | null; /** * * @type {string} * @memberof Task */ 'completedAt': string | null; /** * * @type {string} * @memberof Task */ 'deletedAt': string | null; /** * * @type {TaskPriority} * @memberof Task */ 'priority': TaskPriority | null; /** * * @type {boolean} * @memberof Task */ 'isHidden': boolean; /** * * @type {boolean} * @memberof Task */ 'isPrivate': boolean; /** * * @type {string} * @memberof Task */ 'createdAt': string | null; /** * * @type {string} * @memberof Task */ 'modifiedAt': string | null; } /** * Check if a given object implements the Task interface. */ export declare function instanceOfTask(value: object): value is Task; export declare function TaskFromJSON(json: any): Task; export declare function TaskFromJSONTyped(json: any, ignoreDiscriminator: boolean): Task; export declare function TaskToJSON(json: any): Task; export declare function TaskToJSONTyped(value?: Task | null, ignoreDiscriminator?: boolean): any;