/** * 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 GetProjectBoardsResponseDataInner */ export interface GetProjectBoardsResponseDataInner { /** * The ID of the project board * @type {number} */ 'id'?: number; /** * The name of the project board * @type {string} */ 'name'?: string; /** * The order of the board * @type {number} */ 'order_nr'?: number; /** * The creation date and time of the board in ISO 8601 format * @type {string} */ 'add_time'?: string; /** * The update date and time of the board in ISO 8601 format * @type {string} */ 'update_time'?: string; }