···91919292export class DescriptionsService {
9393 /**
9494+ * @param data The data for the request.
9595+ * @param data.parameterWithBreaks Testing multiline comments in string: First line
9696+ * Second line
9797+ *
9898+ * Fourth line
9999+ * @param data.parameterWithBackticks Testing backticks in string: `backticks` and ```multiple backticks``` should work
100100+ * @param data.parameterWithSlashes Testing slashes in string: \backwards\\\ and /forwards/// should work
101101+ * @param data.parameterWithExpressionPlaceholders Testing expression placeholders in string: ${expression} should work
102102+ * @param data.parameterWithQuotes Testing quotes in string: 'single quote''' and "double quotes""" should work
103103+ * @param data.parameterWithReservedCharacters Testing reserved characters in string: * inline * and ** inline ** should work
94104 * @throws ApiError
95105 */
96106 public static callWithDescriptions(
···121131122132export class ParametersService {
123133 /**
134134+ * @param data The data for the request.
135135+ * @param data.parameterHeader This is the parameter that goes into the header
136136+ * @param data.parameterQuery This is the parameter that goes into the query params
137137+ * @param data.parameterForm This is the parameter that goes into the form data
138138+ * @param data.parameterBody This is the parameter that is sent as request body
139139+ * @param data.parameterPath This is the parameter that goes into the path
124140 * @throws ApiError
125141 */
126142 public static callWithParameters(
···153169 }
154170155171 /**
172172+ * @param data The data for the request.
173173+ * @param data.parameterHeader This is the parameter that goes into the request header
174174+ * @param data.parameterQuery This is the parameter that goes into the request query params
175175+ * @param data.parameterForm This is the parameter that goes into the request form data
176176+ * @param data.parameterBody This is the parameter that is sent as request body
177177+ * @param data.parameterPath1 This is the parameter that goes into the path
178178+ * @param data.parameterPath2 This is the parameter that goes into the path
179179+ * @param data.parameterPath3 This is the parameter that goes into the path
180180+ * @param data._default This is the parameter with a reserved keyword
156181 * @throws ApiError
157182 */
158183 public static callWithWeirdParameterNames(
···193218194219export class DefaultsService {
195220 /**
221221+ * @param data The data for the request.
222222+ * @param data.parameterString This is a simple string with default value
223223+ * @param data.parameterNumber This is a simple number with default value
224224+ * @param data.parameterBoolean This is a simple boolean with default value
225225+ * @param data.parameterEnum This is a simple enum with default value
226226+ * @param data.parameterModel This is a simple model with default value
196227 * @throws ApiError
197228 */
198229 public static callWithDefaultParameters(
···219250 }
220251221252 /**
253253+ * @param data The data for the request.
254254+ * @param data.parameterString This is a simple string that is optional with default value
255255+ * @param data.parameterNumber This is a simple number that is optional with default value
256256+ * @param data.parameterBoolean This is a simple boolean that is optional with default value
257257+ * @param data.parameterEnum This is a simple enum that is optional with default value
258258+ * @param data.parameterModel This is a simple model that is optional with default value
222259 * @throws ApiError
223260 */
224261 public static callWithDefaultOptionalParameters(
···245282 }
246283247284 /**
285285+ * @param data The data for the request.
286286+ * @param data.parameterStringWithNoDefault This is a string with no default
287287+ * @param data.parameterOptionalStringWithDefault This is a optional string with default
288288+ * @param data.parameterOptionalStringWithEmptyDefault This is a optional string with empty default
289289+ * @param data.parameterOptionalStringWithNoDefault This is a optional string with no default
290290+ * @param data.parameterStringWithDefault This is a string with default
291291+ * @param data.parameterStringWithEmptyDefault This is a string with empty default
292292+ * @param data.parameterStringNullableWithNoDefault This is a string that can be null with no default
293293+ * @param data.parameterStringNullableWithDefault This is a string that can be null with default
248294 * @throws ApiError
249295 */
250296 public static callToTestOrderOfParams(
···494540495541export class CollectionFormatService {
496542 /**
543543+ * @param data The data for the request.
544544+ * @param data.parameterArrayCsv This is an array parameter that is sent as csv format (comma-separated values)
545545+ * @param data.parameterArraySsv This is an array parameter that is sent as ssv format (space-separated values)
546546+ * @param data.parameterArrayTsv This is an array parameter that is sent as tsv format (tab-separated values)
547547+ * @param data.parameterArrayPipes This is an array parameter that is sent as pipes format (pipe-separated values)
548548+ * @param data.parameterArrayMulti This is an array parameter that is sent as multi format (multiple parameter instances)
497549 * @throws ApiError
498550 */
499551 public static collectionFormat(
···522574523575export class TypesService {
524576 /**
577577+ * @param data The data for the request.
578578+ * @param data.parameterArray This is an array parameter
579579+ * @param data.parameterDictionary This is a dictionary parameter
580580+ * @param data.parameterEnum This is an enum parameter
581581+ * @param data.parameterNumber This is a number parameter
582582+ * @param data.parameterString This is a string parameter
583583+ * @param data.parameterBoolean This is a boolean parameter
584584+ * @param data.parameterObject This is an object parameter
585585+ * @param data.id This is a number parameter
525586 * @returns number Response is a simple number
526587 * @returns string Response is a simple string
527588 * @returns boolean Response is a simple boolean
···567628568629export class ComplexService {
569630 /**
631631+ * @param data The data for the request.
632632+ * @param data.parameterObject Parameter containing object
633633+ * @param data.parameterReference Parameter containing reference
570634 * @returns ModelWithString Successful response
571635 * @throws ApiError
572636 */
···613677614678export class ErrorService {
615679 /**
680680+ * @param data The data for the request.
681681+ * @param data.status Status code to return
616682 * @returns unknown Custom message: Successful response
617683 * @throws ApiError
618684 */
···640706641707export class NonAsciiÆøåÆøÅöôêÊService {
642708 /**
709709+ * @param data The data for the request.
710710+ * @param data.nonAsciiParamæøåÆøÅöôêÊ Dummy input param
643711 * @returns NonAsciiStringæøåÆØÅöôêÊ字符串 Successful response
644712 * @throws ApiError
645713 */
···1717 }
18181919 /**
2020+ * @param data The data for the request.
2121+ * @param data.requestBody
2022 * @returns ModelWithReadOnlyAndWriteOnly
2123 * @throws ApiError
2224 */
···122124123125export class ParametersService {
124126 /**
127127+ * @param data The data for the request.
128128+ * @param data.foo foo in method
129129+ * @param data.bar bar in method
125130 * @throws ApiError
126131 */
127132 public static deleteFoo(
···139144 }
140145141146 /**
147147+ * @param data The data for the request.
148148+ * @param data.parameterHeader This is the parameter that goes into the header
149149+ * @param data.fooAllOfEnum
150150+ * @param data.parameterQuery This is the parameter that goes into the query params
151151+ * @param data.parameterForm This is the parameter that goes into the form data
152152+ * @param data.parameterCookie This is the parameter that goes into the cookie
153153+ * @param data.parameterPath This is the parameter that goes into the path
154154+ * @param data.requestBody This is the parameter that goes into the body
155155+ * @param data.fooRefEnum
142156 * @throws ApiError
143157 */
144158 public static callWithParameters(
···180194 }
181195182196 /**
197197+ * @param data The data for the request.
198198+ * @param data.parameterHeader This is the parameter that goes into the request header
199199+ * @param data.parameterQuery This is the parameter that goes into the request query params
200200+ * @param data.parameterForm This is the parameter that goes into the request form data
201201+ * @param data.parameterCookie This is the parameter that goes into the cookie
202202+ * @param data.requestBody This is the parameter that goes into the body
203203+ * @param data.parameterPath1 This is the parameter that goes into the path
204204+ * @param data.parameterPath2 This is the parameter that goes into the path
205205+ * @param data.parameterPath3 This is the parameter that goes into the path
206206+ * @param data._default This is the parameter with a reserved keyword
183207 * @throws ApiError
184208 */
185209 public static callWithWeirdParameterNames(
···223247 }
224248225249 /**
250250+ * @param data The data for the request.
251251+ * @param data.requestBody This is a required parameter
252252+ * @param data.parameter This is an optional parameter
226253 * @throws ApiError
227254 */
228255 public static getCallWithOptionalParam(
···241268 }
242269243270 /**
271271+ * @param data The data for the request.
272272+ * @param data.parameter This is a required parameter
273273+ * @param data.requestBody This is an optional parameter
244274 * @throws ApiError
245275 */
246276 public static postCallWithOptionalParam(
···261291262292export class DescriptionsService {
263293 /**
294294+ * @param data The data for the request.
295295+ * @param data.parameterWithBreaks Testing multiline comments in string: First line
296296+ * Second line
297297+ *
298298+ * Fourth line
299299+ * @param data.parameterWithBackticks Testing backticks in string: `backticks` and ```multiple backticks``` should work
300300+ * @param data.parameterWithSlashes Testing slashes in string: \backwards\\\ and /forwards/// should work
301301+ * @param data.parameterWithExpressionPlaceholders Testing expression placeholders in string: ${expression} should work
302302+ * @param data.parameterWithQuotes Testing quotes in string: 'single quote''' and "double quotes""" should work
303303+ * @param data.parameterWithReservedCharacters Testing reserved characters in string: * inline * and ** inline ** should work
264304 * @throws ApiError
265305 */
266306 public static callWithDescriptions(
···292332export class DeprecatedService {
293333 /**
294334 * @deprecated
335335+ * @param data The data for the request.
336336+ * @param data.parameter This parameter is deprecated
295337 * @throws ApiError
296338 */
297339 public static deprecatedCall(
···310352311353export class RequestBodyService {
312354 /**
355355+ * @param data The data for the request.
356356+ * @param data.parameter This is a reusable parameter
357357+ * @param data.foo A reusable request body
313358 * @throws ApiError
314359 */
315360 public static postApiRequestBody(
···330375331376export class FormDataService {
332377 /**
378378+ * @param data The data for the request.
379379+ * @param data.parameter This is a reusable parameter
380380+ * @param data.formData A reusable request body
333381 * @throws ApiError
334382 */
335383 public static postApiFormData(
···350398351399export class DefaultsService {
352400 /**
401401+ * @param data The data for the request.
402402+ * @param data.parameterString This is a simple string with default value
403403+ * @param data.parameterNumber This is a simple number with default value
404404+ * @param data.parameterBoolean This is a simple boolean with default value
405405+ * @param data.parameterEnum This is a simple enum with default value
406406+ * @param data.parameterModel This is a simple model with default value
353407 * @throws ApiError
354408 */
355409 public static callWithDefaultParameters(
···376430 }
377431378432 /**
433433+ * @param data The data for the request.
434434+ * @param data.parameterString This is a simple string that is optional with default value
435435+ * @param data.parameterNumber This is a simple number that is optional with default value
436436+ * @param data.parameterBoolean This is a simple boolean that is optional with default value
437437+ * @param data.parameterEnum This is a simple enum that is optional with default value
438438+ * @param data.parameterModel This is a simple model that is optional with default value
379439 * @throws ApiError
380440 */
381441 public static callWithDefaultOptionalParameters(
···402462 }
403463404464 /**
465465+ * @param data The data for the request.
466466+ * @param data.parameterStringWithNoDefault This is a string with no default
467467+ * @param data.parameterOptionalStringWithDefault This is a optional string with default
468468+ * @param data.parameterOptionalStringWithEmptyDefault This is a optional string with empty default
469469+ * @param data.parameterOptionalStringWithNoDefault This is a optional string with no default
470470+ * @param data.parameterStringWithDefault This is a string with default
471471+ * @param data.parameterStringWithEmptyDefault This is a string with empty default
472472+ * @param data.parameterStringNullableWithNoDefault This is a string that can be null with no default
473473+ * @param data.parameterStringNullableWithDefault This is a string that can be null with default
405474 * @throws ApiError
406475 */
407476 public static callToTestOrderOfParams(
···651720652721export class CollectionFormatService {
653722 /**
723723+ * @param data The data for the request.
724724+ * @param data.parameterArrayCsv This is an array parameter that is sent as csv format (comma-separated values)
725725+ * @param data.parameterArraySsv This is an array parameter that is sent as ssv format (space-separated values)
726726+ * @param data.parameterArrayTsv This is an array parameter that is sent as tsv format (tab-separated values)
727727+ * @param data.parameterArrayPipes This is an array parameter that is sent as pipes format (pipe-separated values)
728728+ * @param data.parameterArrayMulti This is an array parameter that is sent as multi format (multiple parameter instances)
654729 * @throws ApiError
655730 */
656731 public static collectionFormat(
···679754680755export class TypesService {
681756 /**
757757+ * @param data The data for the request.
758758+ * @param data.parameterArray This is an array parameter
759759+ * @param data.parameterDictionary This is a dictionary parameter
760760+ * @param data.parameterEnum This is an enum parameter
761761+ * @param data.parameterNumber This is a number parameter
762762+ * @param data.parameterString This is a string parameter
763763+ * @param data.parameterBoolean This is a boolean parameter
764764+ * @param data.parameterObject This is an object parameter
765765+ * @param data.id This is a number parameter
682766 * @returns number Response is a simple number
683767 * @returns string Response is a simple string
684768 * @returns boolean Response is a simple boolean
···724808725809export class UploadService {
726810 /**
811811+ * @param data The data for the request.
812812+ * @param data.file Supply a file reference for upload
727813 * @returns boolean
728814 * @throws ApiError
729815 */
···745831746832export class FileResponseService {
747833 /**
834834+ * @param data The data for the request.
835835+ * @param data.id
748836 * @returns binary Success
749837 * @throws ApiError
750838 */
···766854767855export class ComplexService {
768856 /**
857857+ * @param data The data for the request.
858858+ * @param data.parameterObject Parameter containing object
859859+ * @param data.parameterReference Parameter containing reference
769860 * @returns ModelWithString Successful response
770861 * @throws ApiError
771862 */
···790881 }
791882792883 /**
884884+ * @param data The data for the request.
885885+ * @param data.id
886886+ * @param data.requestBody
793887 * @returns ModelWithString Success
794888 * @throws ApiError
795889 */
···813907814908export class MultipartService {
815909 /**
910910+ * @param data The data for the request.
911911+ * @param data.formData
816912 * @throws ApiError
817913 */
818914 public static multipartRequest(
···863959864960export class ErrorService {
865961 /**
962962+ * @param data The data for the request.
963963+ * @param data.status Status code to return
866964 * @returns unknown Custom message: Successful response
867965 * @throws ApiError
868966 */
···890988891989export class NonAsciiÆøåÆøÅöôêÊService {
892990 /**
991991+ * @param data The data for the request.
992992+ * @param data.nonAsciiParamæøåÆøÅöôêÊ Dummy input param
893993 * @returns NonAsciiStringæøåÆØÅöôêÊ字符串 Successful response
894994 * @throws ApiError
895995 */
···2424 }
25252626 /**
2727+ * @param data The data for the request.
2828+ * @param data.requestBody
2729 * @returns ModelWithReadOnlyAndWriteOnly
2830 * @throws ApiError
2931 */
···137139 constructor(public readonly http: HttpClient) {}
138140139141 /**
142142+ * @param data The data for the request.
143143+ * @param data.foo foo in method
144144+ * @param data.bar bar in method
140145 * @throws ApiError
141146 */
142147 public deleteFoo(
···154159 }
155160156161 /**
162162+ * @param data The data for the request.
163163+ * @param data.parameterHeader This is the parameter that goes into the header
164164+ * @param data.fooAllOfEnum
165165+ * @param data.parameterQuery This is the parameter that goes into the query params
166166+ * @param data.parameterForm This is the parameter that goes into the form data
167167+ * @param data.parameterCookie This is the parameter that goes into the cookie
168168+ * @param data.parameterPath This is the parameter that goes into the path
169169+ * @param data.requestBody This is the parameter that goes into the body
170170+ * @param data.fooRefEnum
157171 * @throws ApiError
158172 */
159173 public callWithParameters(
···195209 }
196210197211 /**
212212+ * @param data The data for the request.
213213+ * @param data.parameterHeader This is the parameter that goes into the request header
214214+ * @param data.parameterQuery This is the parameter that goes into the request query params
215215+ * @param data.parameterForm This is the parameter that goes into the request form data
216216+ * @param data.parameterCookie This is the parameter that goes into the cookie
217217+ * @param data.requestBody This is the parameter that goes into the body
218218+ * @param data.parameterPath1 This is the parameter that goes into the path
219219+ * @param data.parameterPath2 This is the parameter that goes into the path
220220+ * @param data.parameterPath3 This is the parameter that goes into the path
221221+ * @param data._default This is the parameter with a reserved keyword
198222 * @throws ApiError
199223 */
200224 public callWithWeirdParameterNames(
···238262 }
239263240264 /**
265265+ * @param data The data for the request.
266266+ * @param data.requestBody This is a required parameter
267267+ * @param data.parameter This is an optional parameter
241268 * @throws ApiError
242269 */
243270 public getCallWithOptionalParam(
···256283 }
257284258285 /**
286286+ * @param data The data for the request.
287287+ * @param data.parameter This is a required parameter
288288+ * @param data.requestBody This is an optional parameter
259289 * @throws ApiError
260290 */
261291 public postCallWithOptionalParam(
···281311 constructor(public readonly http: HttpClient) {}
282312283313 /**
314314+ * @param data The data for the request.
315315+ * @param data.parameterWithBreaks Testing multiline comments in string: First line
316316+ * Second line
317317+ *
318318+ * Fourth line
319319+ * @param data.parameterWithBackticks Testing backticks in string: `backticks` and ```multiple backticks``` should work
320320+ * @param data.parameterWithSlashes Testing slashes in string: \backwards\\\ and /forwards/// should work
321321+ * @param data.parameterWithExpressionPlaceholders Testing expression placeholders in string: ${expression} should work
322322+ * @param data.parameterWithQuotes Testing quotes in string: 'single quote''' and "double quotes""" should work
323323+ * @param data.parameterWithReservedCharacters Testing reserved characters in string: * inline * and ** inline ** should work
284324 * @throws ApiError
285325 */
286326 public callWithDescriptions(
···317357318358 /**
319359 * @deprecated
360360+ * @param data The data for the request.
361361+ * @param data.parameter This parameter is deprecated
320362 * @throws ApiError
321363 */
322364 public deprecatedCall(
···340382 constructor(public readonly http: HttpClient) {}
341383342384 /**
385385+ * @param data The data for the request.
386386+ * @param data.parameter This is a reusable parameter
387387+ * @param data.foo A reusable request body
343388 * @throws ApiError
344389 */
345390 public postApiRequestBody(
···365410 constructor(public readonly http: HttpClient) {}
366411367412 /**
413413+ * @param data The data for the request.
414414+ * @param data.parameter This is a reusable parameter
415415+ * @param data.formData A reusable request body
368416 * @throws ApiError
369417 */
370418 public postApiFormData(
···390438 constructor(public readonly http: HttpClient) {}
391439392440 /**
441441+ * @param data The data for the request.
442442+ * @param data.parameterString This is a simple string with default value
443443+ * @param data.parameterNumber This is a simple number with default value
444444+ * @param data.parameterBoolean This is a simple boolean with default value
445445+ * @param data.parameterEnum This is a simple enum with default value
446446+ * @param data.parameterModel This is a simple model with default value
393447 * @throws ApiError
394448 */
395449 public callWithDefaultParameters(
···416470 }
417471418472 /**
473473+ * @param data The data for the request.
474474+ * @param data.parameterString This is a simple string that is optional with default value
475475+ * @param data.parameterNumber This is a simple number that is optional with default value
476476+ * @param data.parameterBoolean This is a simple boolean that is optional with default value
477477+ * @param data.parameterEnum This is a simple enum that is optional with default value
478478+ * @param data.parameterModel This is a simple model that is optional with default value
419479 * @throws ApiError
420480 */
421481 public callWithDefaultOptionalParameters(
···442502 }
443503444504 /**
505505+ * @param data The data for the request.
506506+ * @param data.parameterStringWithNoDefault This is a string with no default
507507+ * @param data.parameterOptionalStringWithDefault This is a optional string with default
508508+ * @param data.parameterOptionalStringWithEmptyDefault This is a optional string with empty default
509509+ * @param data.parameterOptionalStringWithNoDefault This is a optional string with no default
510510+ * @param data.parameterStringWithDefault This is a string with default
511511+ * @param data.parameterStringWithEmptyDefault This is a string with empty default
512512+ * @param data.parameterStringNullableWithNoDefault This is a string that can be null with no default
513513+ * @param data.parameterStringNullableWithDefault This is a string that can be null with default
445514 * @throws ApiError
446515 */
447516 public callToTestOrderOfParams(
···726795 constructor(public readonly http: HttpClient) {}
727796728797 /**
798798+ * @param data The data for the request.
799799+ * @param data.parameterArrayCsv This is an array parameter that is sent as csv format (comma-separated values)
800800+ * @param data.parameterArraySsv This is an array parameter that is sent as ssv format (space-separated values)
801801+ * @param data.parameterArrayTsv This is an array parameter that is sent as tsv format (tab-separated values)
802802+ * @param data.parameterArrayPipes This is an array parameter that is sent as pipes format (pipe-separated values)
803803+ * @param data.parameterArrayMulti This is an array parameter that is sent as multi format (multiple parameter instances)
729804 * @throws ApiError
730805 */
731806 public collectionFormat(
···759834 constructor(public readonly http: HttpClient) {}
760835761836 /**
837837+ * @param data The data for the request.
838838+ * @param data.parameterArray This is an array parameter
839839+ * @param data.parameterDictionary This is a dictionary parameter
840840+ * @param data.parameterEnum This is an enum parameter
841841+ * @param data.parameterNumber This is a number parameter
842842+ * @param data.parameterString This is a string parameter
843843+ * @param data.parameterBoolean This is a boolean parameter
844844+ * @param data.parameterObject This is an object parameter
845845+ * @param data.id This is a number parameter
762846 * @returns number Response is a simple number
763847 * @returns string Response is a simple string
764848 * @returns boolean Response is a simple boolean
···809893 constructor(public readonly http: HttpClient) {}
810894811895 /**
896896+ * @param data The data for the request.
897897+ * @param data.file Supply a file reference for upload
812898 * @returns boolean
813899 * @throws ApiError
814900 */
···833919 constructor(public readonly http: HttpClient) {}
834920835921 /**
922922+ * @param data The data for the request.
923923+ * @param data.id
836924 * @returns binary Success
837925 * @throws ApiError
838926 */
···859947 constructor(public readonly http: HttpClient) {}
860948861949 /**
950950+ * @param data The data for the request.
951951+ * @param data.parameterObject Parameter containing object
952952+ * @param data.parameterReference Parameter containing reference
862953 * @returns ModelWithString Successful response
863954 * @throws ApiError
864955 */
···881972 }
882973883974 /**
975975+ * @param data The data for the request.
976976+ * @param data.id
977977+ * @param data.requestBody
884978 * @returns ModelWithString Success
885979 * @throws ApiError
886980 */
···9091003 constructor(public readonly http: HttpClient) {}
91010049111005 /**
10061006+ * @param data The data for the request.
10071007+ * @param data.formData
9121008 * @throws ApiError
9131009 */
9141010 public multipartRequest(
···9691065 constructor(public readonly http: HttpClient) {}
97010669711067 /**
10681068+ * @param data The data for the request.
10691069+ * @param data.status Status code to return
9721070 * @returns unknown Custom message: Successful response
9731071 * @throws ApiError
9741072 */
···9991097 constructor(public readonly http: HttpClient) {}
1000109810011099 /**
11001100+ * @param data The data for the request.
11011101+ * @param data.nonAsciiParamæøåÆøÅöôêÊ Dummy input param
10021102 * @returns NonAsciiStringæøåÆØÅöôêÊ字符串 Successful response
10031103 * @throws ApiError
10041104 */
···1818 }
19192020 /**
2121+ * @param data The data for the request.
2222+ * @param data.requestBody
2123 * @returns ModelWithReadOnlyAndWriteOnly
2224 * @throws ApiError
2325 */
···127129 constructor(public readonly httpRequest: BaseHttpRequest) {}
128130129131 /**
132132+ * @param data The data for the request.
133133+ * @param data.foo foo in method
134134+ * @param data.bar bar in method
130135 * @throws ApiError
131136 */
132137 public deleteFoo(
···144149 }
145150146151 /**
152152+ * @param data The data for the request.
153153+ * @param data.parameterHeader This is the parameter that goes into the header
154154+ * @param data.fooAllOfEnum
155155+ * @param data.parameterQuery This is the parameter that goes into the query params
156156+ * @param data.parameterForm This is the parameter that goes into the form data
157157+ * @param data.parameterCookie This is the parameter that goes into the cookie
158158+ * @param data.parameterPath This is the parameter that goes into the path
159159+ * @param data.requestBody This is the parameter that goes into the body
160160+ * @param data.fooRefEnum
147161 * @throws ApiError
148162 */
149163 public callWithParameters(
···185199 }
186200187201 /**
202202+ * @param data The data for the request.
203203+ * @param data.parameterHeader This is the parameter that goes into the request header
204204+ * @param data.parameterQuery This is the parameter that goes into the request query params
205205+ * @param data.parameterForm This is the parameter that goes into the request form data
206206+ * @param data.parameterCookie This is the parameter that goes into the cookie
207207+ * @param data.requestBody This is the parameter that goes into the body
208208+ * @param data.parameterPath1 This is the parameter that goes into the path
209209+ * @param data.parameterPath2 This is the parameter that goes into the path
210210+ * @param data.parameterPath3 This is the parameter that goes into the path
211211+ * @param data._default This is the parameter with a reserved keyword
188212 * @throws ApiError
189213 */
190214 public callWithWeirdParameterNames(
···228252 }
229253230254 /**
255255+ * @param data The data for the request.
256256+ * @param data.requestBody This is a required parameter
257257+ * @param data.parameter This is an optional parameter
231258 * @throws ApiError
232259 */
233260 public getCallWithOptionalParam(
···246273 }
247274248275 /**
276276+ * @param data The data for the request.
277277+ * @param data.parameter This is a required parameter
278278+ * @param data.requestBody This is an optional parameter
249279 * @throws ApiError
250280 */
251281 public postCallWithOptionalParam(
···268298 constructor(public readonly httpRequest: BaseHttpRequest) {}
269299270300 /**
301301+ * @param data The data for the request.
302302+ * @param data.parameterWithBreaks Testing multiline comments in string: First line
303303+ * Second line
304304+ *
305305+ * Fourth line
306306+ * @param data.parameterWithBackticks Testing backticks in string: `backticks` and ```multiple backticks``` should work
307307+ * @param data.parameterWithSlashes Testing slashes in string: \backwards\\\ and /forwards/// should work
308308+ * @param data.parameterWithExpressionPlaceholders Testing expression placeholders in string: ${expression} should work
309309+ * @param data.parameterWithQuotes Testing quotes in string: 'single quote''' and "double quotes""" should work
310310+ * @param data.parameterWithReservedCharacters Testing reserved characters in string: * inline * and ** inline ** should work
271311 * @throws ApiError
272312 */
273313 public callWithDescriptions(
···301341302342 /**
303343 * @deprecated
344344+ * @param data The data for the request.
345345+ * @param data.parameter This parameter is deprecated
304346 * @throws ApiError
305347 */
306348 public deprecatedCall(
···321363 constructor(public readonly httpRequest: BaseHttpRequest) {}
322364323365 /**
366366+ * @param data The data for the request.
367367+ * @param data.parameter This is a reusable parameter
368368+ * @param data.foo A reusable request body
324369 * @throws ApiError
325370 */
326371 public postApiRequestBody(
···343388 constructor(public readonly httpRequest: BaseHttpRequest) {}
344389345390 /**
391391+ * @param data The data for the request.
392392+ * @param data.parameter This is a reusable parameter
393393+ * @param data.formData A reusable request body
346394 * @throws ApiError
347395 */
348396 public postApiFormData(
···365413 constructor(public readonly httpRequest: BaseHttpRequest) {}
366414367415 /**
416416+ * @param data The data for the request.
417417+ * @param data.parameterString This is a simple string with default value
418418+ * @param data.parameterNumber This is a simple number with default value
419419+ * @param data.parameterBoolean This is a simple boolean with default value
420420+ * @param data.parameterEnum This is a simple enum with default value
421421+ * @param data.parameterModel This is a simple model with default value
368422 * @throws ApiError
369423 */
370424 public callWithDefaultParameters(
···391445 }
392446393447 /**
448448+ * @param data The data for the request.
449449+ * @param data.parameterString This is a simple string that is optional with default value
450450+ * @param data.parameterNumber This is a simple number that is optional with default value
451451+ * @param data.parameterBoolean This is a simple boolean that is optional with default value
452452+ * @param data.parameterEnum This is a simple enum that is optional with default value
453453+ * @param data.parameterModel This is a simple model that is optional with default value
394454 * @throws ApiError
395455 */
396456 public callWithDefaultOptionalParameters(
···417477 }
418478419479 /**
480480+ * @param data The data for the request.
481481+ * @param data.parameterStringWithNoDefault This is a string with no default
482482+ * @param data.parameterOptionalStringWithDefault This is a optional string with default
483483+ * @param data.parameterOptionalStringWithEmptyDefault This is a optional string with empty default
484484+ * @param data.parameterOptionalStringWithNoDefault This is a optional string with no default
485485+ * @param data.parameterStringWithDefault This is a string with default
486486+ * @param data.parameterStringWithEmptyDefault This is a string with empty default
487487+ * @param data.parameterStringNullableWithNoDefault This is a string that can be null with no default
488488+ * @param data.parameterStringNullableWithDefault This is a string that can be null with default
420489 * @throws ApiError
421490 */
422491 public callToTestOrderOfParams(
···680749 constructor(public readonly httpRequest: BaseHttpRequest) {}
681750682751 /**
752752+ * @param data The data for the request.
753753+ * @param data.parameterArrayCsv This is an array parameter that is sent as csv format (comma-separated values)
754754+ * @param data.parameterArraySsv This is an array parameter that is sent as ssv format (space-separated values)
755755+ * @param data.parameterArrayTsv This is an array parameter that is sent as tsv format (tab-separated values)
756756+ * @param data.parameterArrayPipes This is an array parameter that is sent as pipes format (pipe-separated values)
757757+ * @param data.parameterArrayMulti This is an array parameter that is sent as multi format (multiple parameter instances)
683758 * @throws ApiError
684759 */
685760 public collectionFormat(
···710785 constructor(public readonly httpRequest: BaseHttpRequest) {}
711786712787 /**
788788+ * @param data The data for the request.
789789+ * @param data.parameterArray This is an array parameter
790790+ * @param data.parameterDictionary This is a dictionary parameter
791791+ * @param data.parameterEnum This is an enum parameter
792792+ * @param data.parameterNumber This is a number parameter
793793+ * @param data.parameterString This is a string parameter
794794+ * @param data.parameterBoolean This is a boolean parameter
795795+ * @param data.parameterObject This is an object parameter
796796+ * @param data.id This is a number parameter
713797 * @returns number Response is a simple number
714798 * @returns string Response is a simple string
715799 * @returns boolean Response is a simple boolean
···757841 constructor(public readonly httpRequest: BaseHttpRequest) {}
758842759843 /**
844844+ * @param data The data for the request.
845845+ * @param data.file Supply a file reference for upload
760846 * @returns boolean
761847 * @throws ApiError
762848 */
···780866 constructor(public readonly httpRequest: BaseHttpRequest) {}
781867782868 /**
869869+ * @param data The data for the request.
870870+ * @param data.id
783871 * @returns binary Success
784872 * @throws ApiError
785873 */
···803891 constructor(public readonly httpRequest: BaseHttpRequest) {}
804892805893 /**
894894+ * @param data The data for the request.
895895+ * @param data.parameterObject Parameter containing object
896896+ * @param data.parameterReference Parameter containing reference
806897 * @returns ModelWithString Successful response
807898 * @throws ApiError
808899 */
···827918 }
828919829920 /**
921921+ * @param data The data for the request.
922922+ * @param data.id
923923+ * @param data.requestBody
830924 * @returns ModelWithString Success
831925 * @throws ApiError
832926 */
···852946 constructor(public readonly httpRequest: BaseHttpRequest) {}
853947854948 /**
949949+ * @param data The data for the request.
950950+ * @param data.formData
855951 * @throws ApiError
856952 */
857953 public multipartRequest(
···9061002 constructor(public readonly httpRequest: BaseHttpRequest) {}
90710039081004 /**
10051005+ * @param data The data for the request.
10061006+ * @param data.status Status code to return
9091007 * @returns unknown Custom message: Successful response
9101008 * @throws ApiError
9111009 */
···9351033 constructor(public readonly httpRequest: BaseHttpRequest) {}
93610349371035 /**
10361036+ * @param data The data for the request.
10371037+ * @param data.nonAsciiParamæøåÆøÅöôêÊ Dummy input param
9381038 * @returns NonAsciiStringæøåÆØÅöôêÊ字符串 Successful response
9391039 * @throws ApiError
9401040 */
···1717 }
18181919 /**
2020+ * @param data The data for the request.
2121+ * @param data.requestBody
2022 * @returns ModelWithReadOnlyAndWriteOnly
2123 * @throws ApiError
2224 */
···122124123125export class ParametersService {
124126 /**
127127+ * @param data The data for the request.
128128+ * @param data.foo foo in method
129129+ * @param data.bar bar in method
125130 * @throws ApiError
126131 */
127132 public static deleteFoo(
···139144 }
140145141146 /**
147147+ * @param data The data for the request.
148148+ * @param data.parameterHeader This is the parameter that goes into the header
149149+ * @param data.fooAllOfEnum
150150+ * @param data.parameterQuery This is the parameter that goes into the query params
151151+ * @param data.parameterForm This is the parameter that goes into the form data
152152+ * @param data.parameterCookie This is the parameter that goes into the cookie
153153+ * @param data.parameterPath This is the parameter that goes into the path
154154+ * @param data.requestBody This is the parameter that goes into the body
155155+ * @param data.fooRefEnum
142156 * @throws ApiError
143157 */
144158 public static callWithParameters(
···180194 }
181195182196 /**
197197+ * @param data The data for the request.
198198+ * @param data.parameterHeader This is the parameter that goes into the request header
199199+ * @param data.parameterQuery This is the parameter that goes into the request query params
200200+ * @param data.parameterForm This is the parameter that goes into the request form data
201201+ * @param data.parameterCookie This is the parameter that goes into the cookie
202202+ * @param data.requestBody This is the parameter that goes into the body
203203+ * @param data.parameterPath1 This is the parameter that goes into the path
204204+ * @param data.parameterPath2 This is the parameter that goes into the path
205205+ * @param data.parameterPath3 This is the parameter that goes into the path
206206+ * @param data._default This is the parameter with a reserved keyword
183207 * @throws ApiError
184208 */
185209 public static callWithWeirdParameterNames(
···223247 }
224248225249 /**
250250+ * @param data The data for the request.
251251+ * @param data.requestBody This is a required parameter
252252+ * @param data.parameter This is an optional parameter
226253 * @throws ApiError
227254 */
228255 public static getCallWithOptionalParam(
···241268 }
242269243270 /**
271271+ * @param data The data for the request.
272272+ * @param data.parameter This is a required parameter
273273+ * @param data.requestBody This is an optional parameter
244274 * @throws ApiError
245275 */
246276 public static postCallWithOptionalParam(
···261291262292export class DescriptionsService {
263293 /**
294294+ * @param data The data for the request.
295295+ * @param data.parameterWithBreaks Testing multiline comments in string: First line
296296+ * Second line
297297+ *
298298+ * Fourth line
299299+ * @param data.parameterWithBackticks Testing backticks in string: `backticks` and ```multiple backticks``` should work
300300+ * @param data.parameterWithSlashes Testing slashes in string: \backwards\\\ and /forwards/// should work
301301+ * @param data.parameterWithExpressionPlaceholders Testing expression placeholders in string: ${expression} should work
302302+ * @param data.parameterWithQuotes Testing quotes in string: 'single quote''' and "double quotes""" should work
303303+ * @param data.parameterWithReservedCharacters Testing reserved characters in string: * inline * and ** inline ** should work
264304 * @throws ApiError
265305 */
266306 public static callWithDescriptions(
···292332export class DeprecatedService {
293333 /**
294334 * @deprecated
335335+ * @param data The data for the request.
336336+ * @param data.parameter This parameter is deprecated
295337 * @throws ApiError
296338 */
297339 public static deprecatedCall(
···310352311353export class RequestBodyService {
312354 /**
355355+ * @param data The data for the request.
356356+ * @param data.parameter This is a reusable parameter
357357+ * @param data.foo A reusable request body
313358 * @throws ApiError
314359 */
315360 public static postApiRequestBody(
···330375331376export class FormDataService {
332377 /**
378378+ * @param data The data for the request.
379379+ * @param data.parameter This is a reusable parameter
380380+ * @param data.formData A reusable request body
333381 * @throws ApiError
334382 */
335383 public static postApiFormData(
···350398351399export class DefaultsService {
352400 /**
401401+ * @param data The data for the request.
402402+ * @param data.parameterString This is a simple string with default value
403403+ * @param data.parameterNumber This is a simple number with default value
404404+ * @param data.parameterBoolean This is a simple boolean with default value
405405+ * @param data.parameterEnum This is a simple enum with default value
406406+ * @param data.parameterModel This is a simple model with default value
353407 * @throws ApiError
354408 */
355409 public static callWithDefaultParameters(
···376430 }
377431378432 /**
433433+ * @param data The data for the request.
434434+ * @param data.parameterString This is a simple string that is optional with default value
435435+ * @param data.parameterNumber This is a simple number that is optional with default value
436436+ * @param data.parameterBoolean This is a simple boolean that is optional with default value
437437+ * @param data.parameterEnum This is a simple enum that is optional with default value
438438+ * @param data.parameterModel This is a simple model that is optional with default value
379439 * @throws ApiError
380440 */
381441 public static callWithDefaultOptionalParameters(
···402462 }
403463404464 /**
465465+ * @param data The data for the request.
466466+ * @param data.parameterStringWithNoDefault This is a string with no default
467467+ * @param data.parameterOptionalStringWithDefault This is a optional string with default
468468+ * @param data.parameterOptionalStringWithEmptyDefault This is a optional string with empty default
469469+ * @param data.parameterOptionalStringWithNoDefault This is a optional string with no default
470470+ * @param data.parameterStringWithDefault This is a string with default
471471+ * @param data.parameterStringWithEmptyDefault This is a string with empty default
472472+ * @param data.parameterStringNullableWithNoDefault This is a string that can be null with no default
473473+ * @param data.parameterStringNullableWithDefault This is a string that can be null with default
405474 * @throws ApiError
406475 */
407476 public static callToTestOrderOfParams(
···651720652721export class CollectionFormatService {
653722 /**
723723+ * @param data The data for the request.
724724+ * @param data.parameterArrayCsv This is an array parameter that is sent as csv format (comma-separated values)
725725+ * @param data.parameterArraySsv This is an array parameter that is sent as ssv format (space-separated values)
726726+ * @param data.parameterArrayTsv This is an array parameter that is sent as tsv format (tab-separated values)
727727+ * @param data.parameterArrayPipes This is an array parameter that is sent as pipes format (pipe-separated values)
728728+ * @param data.parameterArrayMulti This is an array parameter that is sent as multi format (multiple parameter instances)
654729 * @throws ApiError
655730 */
656731 public static collectionFormat(
···679754680755export class TypesService {
681756 /**
757757+ * @param data The data for the request.
758758+ * @param data.parameterArray This is an array parameter
759759+ * @param data.parameterDictionary This is a dictionary parameter
760760+ * @param data.parameterEnum This is an enum parameter
761761+ * @param data.parameterNumber This is a number parameter
762762+ * @param data.parameterString This is a string parameter
763763+ * @param data.parameterBoolean This is a boolean parameter
764764+ * @param data.parameterObject This is an object parameter
765765+ * @param data.id This is a number parameter
682766 * @returns number Response is a simple number
683767 * @returns string Response is a simple string
684768 * @returns boolean Response is a simple boolean
···724808725809export class UploadService {
726810 /**
811811+ * @param data The data for the request.
812812+ * @param data.file Supply a file reference for upload
727813 * @returns boolean
728814 * @throws ApiError
729815 */
···745831746832export class FileResponseService {
747833 /**
834834+ * @param data The data for the request.
835835+ * @param data.id
748836 * @returns binary Success
749837 * @throws ApiError
750838 */
···766854767855export class ComplexService {
768856 /**
857857+ * @param data The data for the request.
858858+ * @param data.parameterObject Parameter containing object
859859+ * @param data.parameterReference Parameter containing reference
769860 * @returns ModelWithString Successful response
770861 * @throws ApiError
771862 */
···790881 }
791882792883 /**
884884+ * @param data The data for the request.
885885+ * @param data.id
886886+ * @param data.requestBody
793887 * @returns ModelWithString Success
794888 * @throws ApiError
795889 */
···813907814908export class MultipartService {
815909 /**
910910+ * @param data The data for the request.
911911+ * @param data.formData
816912 * @throws ApiError
817913 */
818914 public static multipartRequest(
···863959864960export class ErrorService {
865961 /**
962962+ * @param data The data for the request.
963963+ * @param data.status Status code to return
866964 * @returns unknown Custom message: Successful response
867965 * @throws ApiError
868966 */
···890988891989export class NonAsciiÆøåÆøÅöôêÊService {
892990 /**
991991+ * @param data The data for the request.
992992+ * @param data.nonAsciiParamæøåÆøÅöôêÊ Dummy input param
893993 * @returns NonAsciiStringæøåÆØÅöôêÊ字符串 Successful response
894994 * @throws ApiError
895995 */
···7788export class DefaultsService {
99 /**
1010+ * @param data The data for the request.
1111+ * @param data.parameterString This is a simple string with default value
1212+ * @param data.parameterNumber This is a simple number with default value
1313+ * @param data.parameterBoolean This is a simple boolean with default value
1414+ * @param data.parameterEnum This is a simple enum with default value
1515+ * @param data.parameterModel This is a simple model with default value
1016 * @throws ApiError
1117 */
1218 public static callWithDefaultParameters(
···3339 }
34403541 /**
4242+ * @param data The data for the request.
4343+ * @param data.parameterString This is a simple string that is optional with default value
4444+ * @param data.parameterNumber This is a simple number that is optional with default value
4545+ * @param data.parameterBoolean This is a simple boolean that is optional with default value
4646+ * @param data.parameterEnum This is a simple enum that is optional with default value
4747+ * @param data.parameterModel This is a simple model that is optional with default value
3648 * @throws ApiError
3749 */
3850 public static callWithDefaultOptionalParameters(
···5971 }
60726173 /**
7474+ * @param data The data for the request.
7575+ * @param data.parameterStringWithNoDefault This is a string with no default
7676+ * @param data.parameterOptionalStringWithDefault This is a optional string with default
7777+ * @param data.parameterOptionalStringWithEmptyDefault This is a optional string with empty default
7878+ * @param data.parameterOptionalStringWithNoDefault This is a optional string with no default
7979+ * @param data.parameterStringWithDefault This is a string with default
8080+ * @param data.parameterStringWithEmptyDefault This is a string with empty default
8181+ * @param data.parameterStringNullableWithNoDefault This is a string that can be null with no default
8282+ * @param data.parameterStringNullableWithDefault This is a string that can be null with default
6283 * @throws ApiError
6384 */
6485 public static callToTestOrderOfParams(
···91919292export class myAwesomeParametersApi {
9393 /**
9494+ * @param data The data for the request.
9595+ * @param data.foo foo in method
9696+ * @param data.bar bar in method
9497 * @throws ApiError
9598 */
9699 public static deleteFoo(
···108111 }
109112110113 /**
114114+ * @param data The data for the request.
115115+ * @param data.parameterHeader This is the parameter that goes into the header
116116+ * @param data.fooAllOfEnum
117117+ * @param data.parameterQuery This is the parameter that goes into the query params
118118+ * @param data.parameterForm This is the parameter that goes into the form data
119119+ * @param data.parameterCookie This is the parameter that goes into the cookie
120120+ * @param data.parameterPath This is the parameter that goes into the path
121121+ * @param data.requestBody This is the parameter that goes into the body
122122+ * @param data.fooRefEnum
111123 * @throws ApiError
112124 */
113125 public static callWithParameters(
···149161 }
150162151163 /**
164164+ * @param data The data for the request.
165165+ * @param data.parameterHeader This is the parameter that goes into the request header
166166+ * @param data.parameterQuery This is the parameter that goes into the request query params
167167+ * @param data.parameterForm This is the parameter that goes into the request form data
168168+ * @param data.parameterCookie This is the parameter that goes into the cookie
169169+ * @param data.requestBody This is the parameter that goes into the body
170170+ * @param data.parameterPath1 This is the parameter that goes into the path
171171+ * @param data.parameterPath2 This is the parameter that goes into the path
172172+ * @param data.parameterPath3 This is the parameter that goes into the path
173173+ * @param data._default This is the parameter with a reserved keyword
152174 * @throws ApiError
153175 */
154176 public static callWithWeirdParameterNames(
···192214 }
193215194216 /**
217217+ * @param data The data for the request.
218218+ * @param data.requestBody This is a required parameter
219219+ * @param data.parameter This is an optional parameter
195220 * @throws ApiError
196221 */
197222 public static getCallWithOptionalParam(
···210235 }
211236212237 /**
238238+ * @param data The data for the request.
239239+ * @param data.parameter This is a required parameter
240240+ * @param data.requestBody This is an optional parameter
213241 * @throws ApiError
214242 */
215243 public static postCallWithOptionalParam(