/** * Pipedrive API v1 * 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. */ /** * * @export * @interface UpdateProjectRequest1AllOf1 */ export interface UpdateProjectRequest1AllOf1 { /** * The description of the task * @type {string} */ 'description'?: string; /** * The ID of a parent task. Can not be ID of a task which is already a subtask. * @type {number} */ 'parent_task_id'?: number; /** * The ID of the user assigned to the task. When the `assignee_id` field is updated, the `assignee_ids` field value will be overwritten by the `assignee_id` field value. * @type {number} */ 'assignee_id'?: number; /** * The IDs of users assigned to the task. When the `assignee_ids` field is updated, the `assignee_id` field value will be set to the first value of the `assignee_ids` field, or `null` if the list is empty. * @type {Set} */ 'assignee_ids'?: Set; /** * * @type {number} */ 'done'?: UpdateProjectRequest1AllOf1DoneConst; /** * The due date of the task. Format: YYYY-MM-DD. * @type {string} */ 'due_date'?: string; } export declare const UpdateProjectRequest1AllOf1DoneConst: { readonly NUMBER_0: 0; readonly NUMBER_1: 1; }; export type UpdateProjectRequest1AllOf1DoneConst = typeof UpdateProjectRequest1AllOf1DoneConst[keyof typeof UpdateProjectRequest1AllOf1DoneConst];