/** * 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 { ResultCreateCase } from './result-create-case'; import { TestStepResultCreate } from './test-step-result-create'; /** * * @export * @interface ResultCreate */ export interface ResultCreate { /** * Can have the following values `passed`, `failed`, `blocked`, `skipped`, `invalid` + custom statuses * @type {string} * @memberof ResultCreate */ 'status': string; /** * * @type {number} * @memberof ResultCreate */ 'case_id'?: number; /** * * @type {ResultCreateCase} * @memberof ResultCreate */ 'case'?: ResultCreateCase; /** * * @type {number} * @memberof ResultCreate */ 'start_time'?: number | null; /** * * @type {number} * @memberof ResultCreate */ 'time'?: number | null; /** * * @type {number} * @memberof ResultCreate */ 'time_ms'?: number | null; /** * * @type {boolean} * @memberof ResultCreate */ 'defect'?: boolean | null; /** * * @type {Array} * @memberof ResultCreate */ 'attachments'?: Array | null; /** * * @type {string} * @memberof ResultCreate */ 'stacktrace'?: string | null; /** * * @type {string} * @memberof ResultCreate */ 'comment'?: string | null; /** * A map of parameters (name => value) * @type {{ [key: string]: string; }} * @memberof ResultCreate */ 'param'?: { [key: string]: string; } | null; /** * List parameter groups by name only. Add their values in the \'param\' field * @type {Array>} * @memberof ResultCreate */ 'param_groups'?: Array> | null; /** * * @type {Array} * @memberof ResultCreate */ 'steps'?: Array | null; /** * * @type {number} * @memberof ResultCreate */ 'author_id'?: number | null; }