/** * 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 Milestone */ export interface Milestone { /** * * @type {number} * @memberof Milestone */ 'id'?: number; /** * * @type {string} * @memberof Milestone */ 'title'?: string; /** * * @type {string} * @memberof Milestone */ 'description'?: string | null; /** * * @type {string} * @memberof Milestone */ 'status'?: MilestoneStatusEnum; /** * * @type {string} * @memberof Milestone */ 'due_date'?: string | null; /** * Deprecated, use the `created_at` property instead. * @type {string} * @memberof Milestone * @deprecated */ 'created'?: string; /** * Deprecated, use the `updated_at` property instead. * @type {string} * @memberof Milestone * @deprecated */ 'updated'?: string | null; /** * * @type {string} * @memberof Milestone */ 'created_at'?: string; /** * * @type {string} * @memberof Milestone */ 'updated_at'?: string; } /** * @export * @enum {string} */ export declare enum MilestoneStatusEnum { COMPLETED = "completed", ACTIVE = "active" }