/** * Webitel API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 24.04.0 * Contact: support@webitel.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { EngineAuditQuestionType } from './engine-audit-question-type'; import { EngineQuestionOption } from './engine-question-option'; /** * * @export * @interface EngineQuestion */ export interface EngineQuestion { /** * * @type {boolean} * @memberof EngineQuestion */ critical_violation?: boolean; /** * * @type {string} * @memberof EngineQuestion */ description?: string; /** * * @type {number} * @memberof EngineQuestion */ max?: number; /** * * @type {number} * @memberof EngineQuestion */ min?: number; /** * * @type {Array} * @memberof EngineQuestion */ options?: Array; /** * * @type {string} * @memberof EngineQuestion */ question?: string; /** * * @type {boolean} * @memberof EngineQuestion */ required?: boolean; /** * * @type {EngineAuditQuestionType} * @memberof EngineQuestion */ type?: EngineAuditQuestionType; } //# sourceMappingURL=engine-question.d.ts.map