/** * 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 ProjectTemplate */ export interface ProjectTemplate { /** * The ID of a template * @type {number} */ 'id'?: number; /** * The title of a template * @type {string} */ 'title'?: string; /** * The description of a 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 a template owner * @type {number} */ 'owner_id'?: number; /** * The creation date and time of the template in UTC. Format: YYYY-MM-DD HH:MM:SS. * @type {string} */ 'add_time'?: string; /** * The update date and time of the template in UTC. Format: YYYY-MM-DD HH:MM:SS. * @type {string} */ 'update_time'?: string; }