//#region src/model/SetupConfiguration.d.ts type ISetupConfiguration = { done: boolean; repositoryType: string; queueType: string; storageType: string; secretType: string; passwordRegexp: string; haveAuthNotBasic: boolean; }; /** * @typedef {Object} ISetupConfiguration * @property {Boolean} done * @property {String} repositoryType * @property {String} queueType * @property {String} storageType * @property {String} secretType * @property {String} passwordRegexp * @property {Boolean} haveAuthNotBasic */ /** * The SetupConfiguration model module. * @module model/SetupConfiguration * @type {ISetupConfiguration} */ declare class SetupConfiguration { /** * 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): void; /** * Constructs a SetupConfiguration 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/SetupConfiguration} obj Optional instance to populate. * @return {module:model/SetupConfiguration} The populated SetupConfiguration instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to SetupConfiguration. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to SetupConfiguration. */ static validateJSON(data: any): boolean; done: boolean; repositoryType: string; queueType: string; storageType: string; secretType: string; passwordRegexp: string; haveAuthNotBasic: boolean; } //#endregion export { ISetupConfiguration, SetupConfiguration as default };