1
|
/* eslint-disable */
|
2
|
/* tslint:disable */
|
3
|
/*
|
4
|
* ---------------------------------------------------------------
|
5
|
* ## THIS FILE WAS GENERATED VIA SWAGGER-TYPESCRIPT-API ##
|
6
|
* ## ##
|
7
|
* ## AUTHOR: acacode ##
|
8
|
* ## SOURCE: https://github.com/acacode/swagger-typescript-api ##
|
9
|
* ---------------------------------------------------------------
|
10
|
*/
|
11
|
|
12
|
import { PathDto } from "./data-contracts";
|
13
|
import { HttpClient, RequestParams } from "./http-client";
|
14
|
|
15
|
export class Path<SecurityDataType = unknown> extends HttpClient<SecurityDataType> {
|
16
|
/**
|
17
|
* No description
|
18
|
*
|
19
|
* @tags path-controller
|
20
|
* @name GetPath
|
21
|
* @request GET:/path
|
22
|
*/
|
23
|
getPath = (query: { pathDto: PathDto }, params: RequestParams = {}) =>
|
24
|
this.request<PathDto, any>({
|
25
|
path: `/path`,
|
26
|
method: "GET",
|
27
|
query: query,
|
28
|
...params,
|
29
|
});
|
30
|
}
|