/** * 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 TestStepCreate */ export interface TestStepCreate { /** * Step action text. Used for classic steps. For gherkin steps, use the \"value\" property instead. * @type {string} * @memberof TestStepCreate */ 'action'?: string; /** * * @type {string} * @memberof TestStepCreate */ 'expected_result'?: string; /** * * @type {string} * @memberof TestStepCreate */ 'data'?: string; /** * Gherkin scenario text. Used when steps_type is \"gherkin\". Example: \"Given a user exists\\nWhen they log in\\nThen they see the dashboard\" * @type {string} * @memberof TestStepCreate */ 'value'?: string; /** * * @type {number} * @memberof TestStepCreate * @deprecated */ 'position'?: number; /** * A list of Attachment hashes. * @type {Array} * @memberof TestStepCreate */ 'attachments'?: Array; /** * Nested steps may be passed here. Use same structure for them. * @type {Array} * @memberof TestStepCreate */ 'steps'?: Array; }