import "../ApiClient-fBZ10h6n.mjs";
import { t as DependsOn_default } from "../DependsOn-GNgHPHR5.mjs";
import { t as Type } from "../Type-DedIPHdh.mjs";
//#region src/model/InputObject.d.ts
type IInputObject = {
id: string;
type: Type;
description: string;
dependsOn: DependsOn_default;
required: boolean;
defaults: any;
/**
* - Optional UI hint for pre-filling the input. Cannot be used together with a default value.
*/
prefill: any;
displayName: string;
};
/**
* @typedef {Object} IInputObject
* @property {String} id
* @property {Type} type
* @property {String} description
* @property {DependsOn} dependsOn
* @property {Boolean} required
* @property {Object} defaults
* @property {Object} prefill - Optional UI hint for pre-filling the input. Cannot be used together with a default value.
* @property {String} displayName
*/
/**
* The InputObject model module.
* @module model/InputObject
* @type {IInputObject}
*/
declare class InputObject {
/**
* 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, type: any): void;
/**
* Constructs a InputObject 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/InputObject} obj Optional instance to populate.
* @return {module:model/InputObject} The populated InputObject instance.
*/
static constructFromObject(data: any, obj: any): any;
/**
* Validates the JSON data with respect to InputObject.
* @param {Object} data The plain JavaScript object bearing properties of interest.
* @return {boolean} to indicate whether the JSON data is valid with respect to InputObject.
*/
static validateJSON(data: any): boolean;
/**
* Constructs a new InputObject.
* @alias module:model/InputObject
* @param {String} id -
* @param {module:model/Type} type -
*/
constructor(id: string, type: any);
id: string;
type: Type;
description: string;
dependsOn: DependsOn_default;
required: boolean;
defaults: any;
prefill: any;
displayName: string;
}
declare namespace InputObject {
let RequiredProperties: string[];
}
//#endregion
export { IInputObject, InputObject as default };