/** * 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 ProjectTemplate */ export interface ProjectTemplate { /** * The ID of the project template * @type {number} */ 'id'?: number; /** * The title of the project template * @type {string} */ 'title'?: string; /** * The description of the project template * @type {string} */ 'description'?: string; /** * The ID of the project board this template is associated with * @type {number} */ 'projects_board_id'?: number; /** * The ID of the owner of the project template * @type {number} */ 'owner_id'?: number; /** * The creation date and time of the project template in ISO 8601 format * @type {string} */ 'add_time'?: string; /** * The update date and time of the project template in ISO 8601 format * @type {string} */ 'update_time'?: string; }