//#region src/model/HttpParameters.d.ts type IHttpParameters = { conversionService: any; empty: boolean; }; /** * @typedef {Object} IHttpParameters * @property {Object} conversionService * @property {Boolean} empty */ /** * The HttpParameters model module. * @module model/HttpParameters * @type {IHttpParameters} */ declare class HttpParameters { /** * 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, conversionService: any): void; /** * Constructs a HttpParameters 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/HttpParameters} obj Optional instance to populate. * @return {module:model/HttpParameters} The populated HttpParameters instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to HttpParameters. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to HttpParameters. */ static validateJSON(data: any): boolean; /** * Constructs a new HttpParameters. * @alias module:model/HttpParameters * @implements module:model/ConvertibleMultiValuesString * @implements module:model/ConvertibleValuesListString * @implements module:model/ConversionServiceProvider * @param {Object} conversionService - */ constructor(conversionService: any); conversionService: any; empty: boolean; } declare namespace HttpParameters { let RequiredProperties: string[]; } //#endregion export { IHttpParameters, HttpParameters as default };