/** * 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 TestStepResultCreate */ export interface TestStepResultCreate { /** * * @type {string} * @memberof TestStepResultCreate */ 'status': TestStepResultCreateStatusEnum; /** * * @type {number} * @memberof TestStepResultCreate * @deprecated */ 'position'?: number; /** * * @type {string} * @memberof TestStepResultCreate */ 'comment'?: string | null; /** * * @type {Array} * @memberof TestStepResultCreate */ 'attachments'?: Array | null; /** * * @type {string} * @memberof TestStepResultCreate */ 'action'?: string; /** * * @type {string} * @memberof TestStepResultCreate */ 'expected_result'?: string | null; /** * * @type {string} * @memberof TestStepResultCreate */ 'data'?: string | null; /** * Nested steps results may be passed here. Use same structure for them. * @type {Array} * @memberof TestStepResultCreate */ 'steps'?: Array; } /** * @export * @enum {string} */ export declare enum TestStepResultCreateStatusEnum { PASSED = "passed", FAILED = "failed", BLOCKED = "blocked", IN_PROGRESS = "in_progress" }