/** * 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 TestStep */ export interface TestStep { /** * * @type {string} * @memberof TestStep * @deprecated */ 'hash'?: string; /** * * @type {string} * @memberof TestStep */ 'shared_step_hash'?: string | null; /** * * @type {string} * @memberof TestStep */ 'shared_step_nested_hash'?: string | null; /** * * @type {number} * @memberof TestStep * @deprecated */ 'position'?: number; /** * * @type {string} * @memberof TestStep */ 'action'?: string; /** * * @type {string} * @memberof TestStep */ 'expected_result'?: string | null; /** * * @type {string} * @memberof TestStep */ 'data'?: string | null; /** * * @type {Array} * @memberof TestStep */ 'attachments'?: Array; /** * Nested steps will be here. The same structure is used for them. * @type {Array} * @memberof TestStep */ 'steps'?: Array; }