/** * Qase.io TestOps API v1 * Qase TestOps API v1 Specification. * * The version of the OpenAPI document: 1.0.0 * Contact: support@qase.io * * 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 Plan */ export interface Plan { /** * * @type {number} * @memberof Plan */ 'id'?: number; /** * * @type {string} * @memberof Plan */ 'title'?: string; /** * * @type {string} * @memberof Plan */ 'description'?: string | null; /** * * @type {number} * @memberof Plan */ 'cases_count'?: number; /** * * @type {string} * @memberof Plan */ 'created_at'?: string; /** * * @type {string} * @memberof Plan */ 'updated_at'?: string; /** * Deprecated, use the `created_at` property instead. * @type {string} * @memberof Plan * @deprecated */ 'created'?: string; /** * Deprecated, use the `updated_at` property instead. * @type {string} * @memberof Plan * @deprecated */ 'updated'?: string; }