/** * 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. */ import { Attachment } from './attachment'; /** * * @export * @interface TestStepResult */ export interface TestStepResult { /** * 1 - passed, 2 - failed, 3 - blocked, 5 - skipped, 7 - in_progress * @type {number} * @memberof TestStepResult */ 'status'?: number; /** * * @type {number} * @memberof TestStepResult * @deprecated */ 'position'?: number; /** * * @type {Array} * @memberof TestStepResult */ 'attachments'?: Array; /** * Nested steps results will be here. The same structure is used for them for them. * @type {Array} * @memberof TestStepResult */ 'steps'?: Array; }