1 | "use strict";
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 | var GetConfigsApiModel;
|
4 | (function (GetConfigsApiModel) {
|
5 | class Request {
|
6 | constructor(initValue = {}) {
|
7 | Object.keys(initValue).forEach(key => this[key] = initValue[key]);
|
8 | }
|
9 | getRequestBody() {
|
10 | return {};
|
11 | }
|
12 | }
|
13 | GetConfigsApiModel.Request = Request;
|
14 | class Response {
|
15 | constructor() {
|
16 | }
|
17 | }
|
18 | GetConfigsApiModel.Response = Response;
|
19 | })(GetConfigsApiModel = exports.GetConfigsApiModel || (exports.GetConfigsApiModel = {}));
|
20 |
|
\ | No newline at end of file |