import "../ApiClient-fBZ10h6n.mjs"; import { t as Type } from "../Type-DedIPHdh.mjs"; import { t as OutputValue_default } from "../OutputValue-D5nRliVj.mjs"; //#region src/model/Output.d.ts type IOutput = { id: string; description: string; value: OutputValue_default; type: Type; displayName: string; required: boolean; }; /** * @typedef {Object} IOutput * @property {String} id * @property {String} description * @property {OutputValue} value * @property {Type} type * @property {String} displayName * @property {Boolean} required */ /** * The Output model module. * @module model/Output * @type {IOutput} */ declare class Output { /** * Initializes the fields of this object. * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins). * Only for internal use. */ static initialize(obj: any, id: any, value: any, type: any): void; /** * Constructs a Output from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/Output} obj Optional instance to populate. * @return {module:model/Output} The populated Output instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to Output. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to Output. */ static validateJSON(data: any): boolean; /** * Constructs a new Output. * @alias module:model/Output * @param {String} id - * @param {module:model/OutputValue} value - * @param {module:model/Type} type - */ constructor(id: string, value: any, type: any); id: string; description: string; value: OutputValue_default; type: Type; displayName: string; required: boolean; } declare namespace Output { let RequiredProperties: string[]; } //#endregion export { IOutput, Output as default };