/** * Pipedrive API v2 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2.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. */ /** * * @export * @interface GetTasksResponseDataInner */ export interface GetTasksResponseDataInner { /** * The ID of the task * @type {number} */ 'id'?: number; /** * The title of the task * @type {string} */ 'title'?: string; /** * The ID of the user who created the task * @type {number} */ 'creator_id'?: number; /** * The description of the task * @type {string} */ 'description'?: string | null; /** * The ID of the project this task is associated with * @type {number} */ 'project_id'?: number; /** * Whether the task is done or not. * @type {boolean} */ 'is_done'?: boolean; /** * Whether the task is a milestone or not. * @type {boolean} */ 'is_milestone'?: boolean; /** * The due date of the task. Format: YYYY-MM-DD. * @type {string} */ 'due_date'?: string | null; /** * The start date of the task. Format: YYYY-MM-DD. * @type {string} */ 'start_date'?: string | null; /** * The ID of the parent task. If `null`, the task is a root-level task. * @type {number} */ 'parent_task_id'?: number | null; /** * The IDs of users assigned to the task * @type {Array} */ 'assignee_ids'?: Array; /** * The priority of the task * @type {number} */ 'priority'?: number | null; /** * The creation date and time of the task in ISO 8601 format * @type {string} */ 'add_time'?: string; /** * The update date and time of the task in ISO 8601 format * @type {string} */ 'update_time'?: string; /** * The date and time the task was marked as done in ISO 8601 format * @type {string} */ 'marked_as_done_time'?: string | null; }