@gizone/rrs-client 4.2.9-alpha.661 → 4.2.9-alpha.663
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +5 -0
- package/apis/reimbursement-bill-api.ts +93 -0
- package/dist/apis/reimbursement-bill-api.d.ts +48 -0
- package/dist/apis/reimbursement-bill-api.js +70 -0
- package/dist/esm/apis/reimbursement-bill-api.d.ts +48 -0
- package/dist/esm/apis/reimbursement-bill-api.js +70 -0
- package/dist/esm/models/index.d.ts +5 -0
- package/dist/esm/models/index.js +5 -0
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
- package/dist/esm/models/json-result-zjht-contract-data-result.d.ts +62 -0
- package/dist/esm/models/json-result-zjht-contract-data-result.js +14 -0
- package/dist/esm/models/zjht-contract-data-result.d.ts +31 -0
- package/dist/esm/models/zjht-contract-data-result.js +14 -0
- package/dist/esm/models/zjht-contract-detail.d.ts +30 -0
- package/dist/esm/models/zjht-contract-detail.js +14 -0
- package/dist/esm/models/zjht-contract-list-search-dto.d.ts +42 -0
- package/dist/esm/models/zjht-contract-list-search-dto.js +14 -0
- package/dist/esm/models/zjht-contract.d.ts +25 -0
- package/dist/esm/models/zjht-contract.js +14 -0
- package/dist/models/index.d.ts +5 -0
- package/dist/models/index.js +5 -0
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
- package/dist/models/json-result-zjht-contract-data-result.d.ts +62 -0
- package/dist/models/json-result-zjht-contract-data-result.js +15 -0
- package/dist/models/zjht-contract-data-result.d.ts +31 -0
- package/dist/models/zjht-contract-data-result.js +15 -0
- package/dist/models/zjht-contract-detail.d.ts +30 -0
- package/dist/models/zjht-contract-detail.js +15 -0
- package/dist/models/zjht-contract-list-search-dto.d.ts +42 -0
- package/dist/models/zjht-contract-list-search-dto.js +15 -0
- package/dist/models/zjht-contract.d.ts +25 -0
- package/dist/models/zjht-contract.js +15 -0
- package/models/index.ts +5 -0
- package/models/ipage-energy-cost-record-info-vo.ts +4 -4
- package/models/json-result-zjht-contract-data-result.ts +72 -0
- package/models/zjht-contract-data-result.ts +39 -0
- package/models/zjht-contract-detail.ts +36 -0
- package/models/zjht-contract-list-search-dto.ts +48 -0
- package/models/zjht-contract.ts +33 -0
- package/ossutil.log +1197 -1194
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -423,6 +423,7 @@ models/json-result-void.ts
|
|
|
423
423
|
models/json-result-work-order-dept-settings-entity.ts
|
|
424
424
|
models/json-result-work-order-detail-dto.ts
|
|
425
425
|
models/json-result-work-order-issue-type-settings-entity.ts
|
|
426
|
+
models/json-result-zjht-contract-data-result.ts
|
|
426
427
|
models/json-result.ts
|
|
427
428
|
models/login-body.ts
|
|
428
429
|
models/login-type-enum.ts
|
|
@@ -713,6 +714,10 @@ models/wx-mp-get-self-menu-info-result.ts
|
|
|
713
714
|
models/wx-mp-menu.ts
|
|
714
715
|
models/wx-mp-self-menu-button.ts
|
|
715
716
|
models/wx-mp-self-menu-info.ts
|
|
717
|
+
models/zjht-contract-data-result.ts
|
|
718
|
+
models/zjht-contract-detail.ts
|
|
719
|
+
models/zjht-contract-list-search-dto.ts
|
|
720
|
+
models/zjht-contract.ts
|
|
716
721
|
package.json
|
|
717
722
|
tsconfig.esm.json
|
|
718
723
|
tsconfig.json
|
|
@@ -48,11 +48,15 @@ import type { JsonResultPageDtoReimbursementBillListVo } from '../models';
|
|
|
48
48
|
// @ts-ignore
|
|
49
49
|
import type { JsonResultReimbursementBillDetailsVo } from '../models';
|
|
50
50
|
// @ts-ignore
|
|
51
|
+
import type { JsonResultZjhtContractDataResult } from '../models';
|
|
52
|
+
// @ts-ignore
|
|
51
53
|
import type { ReimbursementBillDraftDto } from '../models';
|
|
52
54
|
// @ts-ignore
|
|
53
55
|
import type { ReimbursementBillSubmitDto } from '../models';
|
|
54
56
|
// @ts-ignore
|
|
55
57
|
import type { ReimbursementStatusEnum } from '../models';
|
|
58
|
+
// @ts-ignore
|
|
59
|
+
import type { ZjhtContractListSearchDto } from '../models';
|
|
56
60
|
/**
|
|
57
61
|
* ReimbursementBillApi - axios parameter creator
|
|
58
62
|
* @export
|
|
@@ -682,6 +686,46 @@ export const ReimbursementBillApiAxiosParamCreator = function (configuration?: C
|
|
|
682
686
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
683
687
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
684
688
|
|
|
689
|
+
return {
|
|
690
|
+
url: toPathString(localVarUrlObj),
|
|
691
|
+
options: localVarRequestOptions,
|
|
692
|
+
};
|
|
693
|
+
},
|
|
694
|
+
/**
|
|
695
|
+
*
|
|
696
|
+
* @summary 智家合同列表
|
|
697
|
+
* @param {ZjhtContractListSearchDto} zjhtContractListSearchDto
|
|
698
|
+
* @param {*} [options] Override http request option.
|
|
699
|
+
* @throws {RequiredError}
|
|
700
|
+
*/
|
|
701
|
+
thirdZjhtContractsSearch: async (zjhtContractListSearchDto: ZjhtContractListSearchDto, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
702
|
+
// verify required parameter 'zjhtContractListSearchDto' is not null or undefined
|
|
703
|
+
assertParamExists('thirdZjhtContractsSearch', 'zjhtContractListSearchDto', zjhtContractListSearchDto)
|
|
704
|
+
const localVarPath = `/gizone/reimbursement-bill/third/zjht/contracts/search`;
|
|
705
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
706
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
707
|
+
let baseOptions;
|
|
708
|
+
if (configuration) {
|
|
709
|
+
baseOptions = configuration.baseOptions;
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
713
|
+
const localVarHeaderParameter = {} as any;
|
|
714
|
+
const localVarQueryParameter = {} as any;
|
|
715
|
+
|
|
716
|
+
// authentication tokenScheme required
|
|
717
|
+
// http bearer authentication required
|
|
718
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
723
|
+
|
|
724
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
725
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
726
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
727
|
+
localVarRequestOptions.data = serializeDataIfNeeded(zjhtContractListSearchDto, localVarRequestOptions, configuration)
|
|
728
|
+
|
|
685
729
|
return {
|
|
686
730
|
url: toPathString(localVarUrlObj),
|
|
687
731
|
options: localVarRequestOptions,
|
|
@@ -893,6 +937,19 @@ export const ReimbursementBillApiFp = function(configuration?: Configuration) {
|
|
|
893
937
|
const localVarOperationServerBasePath = operationServerMap['ReimbursementBillApi.thirdPayer']?.[localVarOperationServerIndex]?.url;
|
|
894
938
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
895
939
|
},
|
|
940
|
+
/**
|
|
941
|
+
*
|
|
942
|
+
* @summary 智家合同列表
|
|
943
|
+
* @param {ZjhtContractListSearchDto} zjhtContractListSearchDto
|
|
944
|
+
* @param {*} [options] Override http request option.
|
|
945
|
+
* @throws {RequiredError}
|
|
946
|
+
*/
|
|
947
|
+
async thirdZjhtContractsSearch(zjhtContractListSearchDto: ZjhtContractListSearchDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultZjhtContractDataResult>> {
|
|
948
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.thirdZjhtContractsSearch(zjhtContractListSearchDto, options);
|
|
949
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
950
|
+
const localVarOperationServerBasePath = operationServerMap['ReimbursementBillApi.thirdZjhtContractsSearch']?.[localVarOperationServerIndex]?.url;
|
|
951
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
952
|
+
},
|
|
896
953
|
}
|
|
897
954
|
};
|
|
898
955
|
|
|
@@ -1041,6 +1098,16 @@ export const ReimbursementBillApiFactory = function (configuration?: Configurati
|
|
|
1041
1098
|
thirdPayer(options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListReimbursementBillPayerVo> {
|
|
1042
1099
|
return localVarFp.thirdPayer(options).then((request) => request(axios, basePath));
|
|
1043
1100
|
},
|
|
1101
|
+
/**
|
|
1102
|
+
*
|
|
1103
|
+
* @summary 智家合同列表
|
|
1104
|
+
* @param {ReimbursementBillApiThirdZjhtContractsSearchRequest} requestParameters Request parameters.
|
|
1105
|
+
* @param {*} [options] Override http request option.
|
|
1106
|
+
* @throws {RequiredError}
|
|
1107
|
+
*/
|
|
1108
|
+
thirdZjhtContractsSearch(requestParameters: ReimbursementBillApiThirdZjhtContractsSearchRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultZjhtContractDataResult> {
|
|
1109
|
+
return localVarFp.thirdZjhtContractsSearch(requestParameters.zjhtContractListSearchDto, options).then((request) => request(axios, basePath));
|
|
1110
|
+
},
|
|
1044
1111
|
};
|
|
1045
1112
|
};
|
|
1046
1113
|
|
|
@@ -1324,6 +1391,20 @@ export interface ReimbursementBillApiThirdMdmVendorsBankAccountsRequest {
|
|
|
1324
1391
|
readonly vendorId: string
|
|
1325
1392
|
}
|
|
1326
1393
|
|
|
1394
|
+
/**
|
|
1395
|
+
* Request parameters for thirdZjhtContractsSearch operation in ReimbursementBillApi.
|
|
1396
|
+
* @export
|
|
1397
|
+
* @interface ReimbursementBillApiThirdZjhtContractsSearchRequest
|
|
1398
|
+
*/
|
|
1399
|
+
export interface ReimbursementBillApiThirdZjhtContractsSearchRequest {
|
|
1400
|
+
/**
|
|
1401
|
+
*
|
|
1402
|
+
* @type {ZjhtContractListSearchDto}
|
|
1403
|
+
* @memberof ReimbursementBillApiThirdZjhtContractsSearch
|
|
1404
|
+
*/
|
|
1405
|
+
readonly zjhtContractListSearchDto: ZjhtContractListSearchDto
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1327
1408
|
/**
|
|
1328
1409
|
* ReimbursementBillApi - object-oriented interface
|
|
1329
1410
|
* @export
|
|
@@ -1496,5 +1577,17 @@ export class ReimbursementBillApi extends BaseAPI {
|
|
|
1496
1577
|
public thirdPayer(options?: RawAxiosRequestConfig) {
|
|
1497
1578
|
return ReimbursementBillApiFp(this.configuration).thirdPayer(options).then((request) => request(this.axios, this.basePath));
|
|
1498
1579
|
}
|
|
1580
|
+
|
|
1581
|
+
/**
|
|
1582
|
+
*
|
|
1583
|
+
* @summary 智家合同列表
|
|
1584
|
+
* @param {ReimbursementBillApiThirdZjhtContractsSearchRequest} requestParameters Request parameters.
|
|
1585
|
+
* @param {*} [options] Override http request option.
|
|
1586
|
+
* @throws {RequiredError}
|
|
1587
|
+
* @memberof ReimbursementBillApi
|
|
1588
|
+
*/
|
|
1589
|
+
public thirdZjhtContractsSearch(requestParameters: ReimbursementBillApiThirdZjhtContractsSearchRequest, options?: RawAxiosRequestConfig) {
|
|
1590
|
+
return ReimbursementBillApiFp(this.configuration).thirdZjhtContractsSearch(requestParameters.zjhtContractListSearchDto, options).then((request) => request(this.axios, this.basePath));
|
|
1591
|
+
}
|
|
1499
1592
|
}
|
|
1500
1593
|
|
|
@@ -25,9 +25,11 @@ import type { JsonResultListReimbursementBillPayerVo } from '../models';
|
|
|
25
25
|
import type { JsonResultListReimbursementBillProcessRecordListVo } from '../models';
|
|
26
26
|
import type { JsonResultPageDtoReimbursementBillListVo } from '../models';
|
|
27
27
|
import type { JsonResultReimbursementBillDetailsVo } from '../models';
|
|
28
|
+
import type { JsonResultZjhtContractDataResult } from '../models';
|
|
28
29
|
import type { ReimbursementBillDraftDto } from '../models';
|
|
29
30
|
import type { ReimbursementBillSubmitDto } from '../models';
|
|
30
31
|
import type { ReimbursementStatusEnum } from '../models';
|
|
32
|
+
import type { ZjhtContractListSearchDto } from '../models';
|
|
31
33
|
/**
|
|
32
34
|
* ReimbursementBillApi - axios parameter creator
|
|
33
35
|
* @export
|
|
@@ -159,6 +161,14 @@ export declare const ReimbursementBillApiAxiosParamCreator: (configuration?: Con
|
|
|
159
161
|
* @throws {RequiredError}
|
|
160
162
|
*/
|
|
161
163
|
thirdPayer: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
164
|
+
/**
|
|
165
|
+
*
|
|
166
|
+
* @summary 智家合同列表
|
|
167
|
+
* @param {ZjhtContractListSearchDto} zjhtContractListSearchDto
|
|
168
|
+
* @param {*} [options] Override http request option.
|
|
169
|
+
* @throws {RequiredError}
|
|
170
|
+
*/
|
|
171
|
+
thirdZjhtContractsSearch: (zjhtContractListSearchDto: ZjhtContractListSearchDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
162
172
|
};
|
|
163
173
|
/**
|
|
164
174
|
* ReimbursementBillApi - functional programming interface
|
|
@@ -291,6 +301,14 @@ export declare const ReimbursementBillApiFp: (configuration?: Configuration) =>
|
|
|
291
301
|
* @throws {RequiredError}
|
|
292
302
|
*/
|
|
293
303
|
thirdPayer(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListReimbursementBillPayerVo>>;
|
|
304
|
+
/**
|
|
305
|
+
*
|
|
306
|
+
* @summary 智家合同列表
|
|
307
|
+
* @param {ZjhtContractListSearchDto} zjhtContractListSearchDto
|
|
308
|
+
* @param {*} [options] Override http request option.
|
|
309
|
+
* @throws {RequiredError}
|
|
310
|
+
*/
|
|
311
|
+
thirdZjhtContractsSearch(zjhtContractListSearchDto: ZjhtContractListSearchDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultZjhtContractDataResult>>;
|
|
294
312
|
};
|
|
295
313
|
/**
|
|
296
314
|
* ReimbursementBillApi - factory interface
|
|
@@ -407,6 +425,14 @@ export declare const ReimbursementBillApiFactory: (configuration?: Configuration
|
|
|
407
425
|
* @throws {RequiredError}
|
|
408
426
|
*/
|
|
409
427
|
thirdPayer(options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListReimbursementBillPayerVo>;
|
|
428
|
+
/**
|
|
429
|
+
*
|
|
430
|
+
* @summary 智家合同列表
|
|
431
|
+
* @param {ReimbursementBillApiThirdZjhtContractsSearchRequest} requestParameters Request parameters.
|
|
432
|
+
* @param {*} [options] Override http request option.
|
|
433
|
+
* @throws {RequiredError}
|
|
434
|
+
*/
|
|
435
|
+
thirdZjhtContractsSearch(requestParameters: ReimbursementBillApiThirdZjhtContractsSearchRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultZjhtContractDataResult>;
|
|
410
436
|
};
|
|
411
437
|
/**
|
|
412
438
|
* Request parameters for reimbursementBillDelete operation in ReimbursementBillApi.
|
|
@@ -660,6 +686,19 @@ export interface ReimbursementBillApiThirdMdmVendorsBankAccountsRequest {
|
|
|
660
686
|
*/
|
|
661
687
|
readonly vendorId: string;
|
|
662
688
|
}
|
|
689
|
+
/**
|
|
690
|
+
* Request parameters for thirdZjhtContractsSearch operation in ReimbursementBillApi.
|
|
691
|
+
* @export
|
|
692
|
+
* @interface ReimbursementBillApiThirdZjhtContractsSearchRequest
|
|
693
|
+
*/
|
|
694
|
+
export interface ReimbursementBillApiThirdZjhtContractsSearchRequest {
|
|
695
|
+
/**
|
|
696
|
+
*
|
|
697
|
+
* @type {ZjhtContractListSearchDto}
|
|
698
|
+
* @memberof ReimbursementBillApiThirdZjhtContractsSearch
|
|
699
|
+
*/
|
|
700
|
+
readonly zjhtContractListSearchDto: ZjhtContractListSearchDto;
|
|
701
|
+
}
|
|
663
702
|
/**
|
|
664
703
|
* ReimbursementBillApi - object-oriented interface
|
|
665
704
|
* @export
|
|
@@ -791,4 +830,13 @@ export declare class ReimbursementBillApi extends BaseAPI {
|
|
|
791
830
|
* @memberof ReimbursementBillApi
|
|
792
831
|
*/
|
|
793
832
|
thirdPayer(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListReimbursementBillPayerVo, any, {}>>;
|
|
833
|
+
/**
|
|
834
|
+
*
|
|
835
|
+
* @summary 智家合同列表
|
|
836
|
+
* @param {ReimbursementBillApiThirdZjhtContractsSearchRequest} requestParameters Request parameters.
|
|
837
|
+
* @param {*} [options] Override http request option.
|
|
838
|
+
* @throws {RequiredError}
|
|
839
|
+
* @memberof ReimbursementBillApi
|
|
840
|
+
*/
|
|
841
|
+
thirdZjhtContractsSearch(requestParameters: ReimbursementBillApiThirdZjhtContractsSearchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultZjhtContractDataResult, any, {}>>;
|
|
794
842
|
}
|
|
@@ -556,6 +556,39 @@ const ReimbursementBillApiAxiosParamCreator = function (configuration) {
|
|
|
556
556
|
options: localVarRequestOptions,
|
|
557
557
|
};
|
|
558
558
|
}),
|
|
559
|
+
/**
|
|
560
|
+
*
|
|
561
|
+
* @summary 智家合同列表
|
|
562
|
+
* @param {ZjhtContractListSearchDto} zjhtContractListSearchDto
|
|
563
|
+
* @param {*} [options] Override http request option.
|
|
564
|
+
* @throws {RequiredError}
|
|
565
|
+
*/
|
|
566
|
+
thirdZjhtContractsSearch: (zjhtContractListSearchDto_1, ...args_1) => __awaiter(this, [zjhtContractListSearchDto_1, ...args_1], void 0, function* (zjhtContractListSearchDto, options = {}) {
|
|
567
|
+
// verify required parameter 'zjhtContractListSearchDto' is not null or undefined
|
|
568
|
+
(0, common_1.assertParamExists)('thirdZjhtContractsSearch', 'zjhtContractListSearchDto', zjhtContractListSearchDto);
|
|
569
|
+
const localVarPath = `/gizone/reimbursement-bill/third/zjht/contracts/search`;
|
|
570
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
571
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
572
|
+
let baseOptions;
|
|
573
|
+
if (configuration) {
|
|
574
|
+
baseOptions = configuration.baseOptions;
|
|
575
|
+
}
|
|
576
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
577
|
+
const localVarHeaderParameter = {};
|
|
578
|
+
const localVarQueryParameter = {};
|
|
579
|
+
// authentication tokenScheme required
|
|
580
|
+
// http bearer authentication required
|
|
581
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
582
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
583
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
584
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
585
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
586
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(zjhtContractListSearchDto, localVarRequestOptions, configuration);
|
|
587
|
+
return {
|
|
588
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
589
|
+
options: localVarRequestOptions,
|
|
590
|
+
};
|
|
591
|
+
}),
|
|
559
592
|
};
|
|
560
593
|
};
|
|
561
594
|
exports.ReimbursementBillApiAxiosParamCreator = ReimbursementBillApiAxiosParamCreator;
|
|
@@ -804,6 +837,22 @@ const ReimbursementBillApiFp = function (configuration) {
|
|
|
804
837
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
805
838
|
});
|
|
806
839
|
},
|
|
840
|
+
/**
|
|
841
|
+
*
|
|
842
|
+
* @summary 智家合同列表
|
|
843
|
+
* @param {ZjhtContractListSearchDto} zjhtContractListSearchDto
|
|
844
|
+
* @param {*} [options] Override http request option.
|
|
845
|
+
* @throws {RequiredError}
|
|
846
|
+
*/
|
|
847
|
+
thirdZjhtContractsSearch(zjhtContractListSearchDto, options) {
|
|
848
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
849
|
+
var _a, _b, _c;
|
|
850
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.thirdZjhtContractsSearch(zjhtContractListSearchDto, options);
|
|
851
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
852
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ReimbursementBillApi.thirdZjhtContractsSearch']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
853
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
854
|
+
});
|
|
855
|
+
},
|
|
807
856
|
};
|
|
808
857
|
};
|
|
809
858
|
exports.ReimbursementBillApiFp = ReimbursementBillApiFp;
|
|
@@ -952,6 +1001,16 @@ const ReimbursementBillApiFactory = function (configuration, basePath, axios) {
|
|
|
952
1001
|
thirdPayer(options) {
|
|
953
1002
|
return localVarFp.thirdPayer(options).then((request) => request(axios, basePath));
|
|
954
1003
|
},
|
|
1004
|
+
/**
|
|
1005
|
+
*
|
|
1006
|
+
* @summary 智家合同列表
|
|
1007
|
+
* @param {ReimbursementBillApiThirdZjhtContractsSearchRequest} requestParameters Request parameters.
|
|
1008
|
+
* @param {*} [options] Override http request option.
|
|
1009
|
+
* @throws {RequiredError}
|
|
1010
|
+
*/
|
|
1011
|
+
thirdZjhtContractsSearch(requestParameters, options) {
|
|
1012
|
+
return localVarFp.thirdZjhtContractsSearch(requestParameters.zjhtContractListSearchDto, options).then((request) => request(axios, basePath));
|
|
1013
|
+
},
|
|
955
1014
|
};
|
|
956
1015
|
};
|
|
957
1016
|
exports.ReimbursementBillApiFactory = ReimbursementBillApiFactory;
|
|
@@ -1114,5 +1173,16 @@ class ReimbursementBillApi extends base_1.BaseAPI {
|
|
|
1114
1173
|
thirdPayer(options) {
|
|
1115
1174
|
return (0, exports.ReimbursementBillApiFp)(this.configuration).thirdPayer(options).then((request) => request(this.axios, this.basePath));
|
|
1116
1175
|
}
|
|
1176
|
+
/**
|
|
1177
|
+
*
|
|
1178
|
+
* @summary 智家合同列表
|
|
1179
|
+
* @param {ReimbursementBillApiThirdZjhtContractsSearchRequest} requestParameters Request parameters.
|
|
1180
|
+
* @param {*} [options] Override http request option.
|
|
1181
|
+
* @throws {RequiredError}
|
|
1182
|
+
* @memberof ReimbursementBillApi
|
|
1183
|
+
*/
|
|
1184
|
+
thirdZjhtContractsSearch(requestParameters, options) {
|
|
1185
|
+
return (0, exports.ReimbursementBillApiFp)(this.configuration).thirdZjhtContractsSearch(requestParameters.zjhtContractListSearchDto, options).then((request) => request(this.axios, this.basePath));
|
|
1186
|
+
}
|
|
1117
1187
|
}
|
|
1118
1188
|
exports.ReimbursementBillApi = ReimbursementBillApi;
|
|
@@ -25,9 +25,11 @@ import type { JsonResultListReimbursementBillPayerVo } from '../models';
|
|
|
25
25
|
import type { JsonResultListReimbursementBillProcessRecordListVo } from '../models';
|
|
26
26
|
import type { JsonResultPageDtoReimbursementBillListVo } from '../models';
|
|
27
27
|
import type { JsonResultReimbursementBillDetailsVo } from '../models';
|
|
28
|
+
import type { JsonResultZjhtContractDataResult } from '../models';
|
|
28
29
|
import type { ReimbursementBillDraftDto } from '../models';
|
|
29
30
|
import type { ReimbursementBillSubmitDto } from '../models';
|
|
30
31
|
import type { ReimbursementStatusEnum } from '../models';
|
|
32
|
+
import type { ZjhtContractListSearchDto } from '../models';
|
|
31
33
|
/**
|
|
32
34
|
* ReimbursementBillApi - axios parameter creator
|
|
33
35
|
* @export
|
|
@@ -159,6 +161,14 @@ export declare const ReimbursementBillApiAxiosParamCreator: (configuration?: Con
|
|
|
159
161
|
* @throws {RequiredError}
|
|
160
162
|
*/
|
|
161
163
|
thirdPayer: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
164
|
+
/**
|
|
165
|
+
*
|
|
166
|
+
* @summary 智家合同列表
|
|
167
|
+
* @param {ZjhtContractListSearchDto} zjhtContractListSearchDto
|
|
168
|
+
* @param {*} [options] Override http request option.
|
|
169
|
+
* @throws {RequiredError}
|
|
170
|
+
*/
|
|
171
|
+
thirdZjhtContractsSearch: (zjhtContractListSearchDto: ZjhtContractListSearchDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
162
172
|
};
|
|
163
173
|
/**
|
|
164
174
|
* ReimbursementBillApi - functional programming interface
|
|
@@ -291,6 +301,14 @@ export declare const ReimbursementBillApiFp: (configuration?: Configuration) =>
|
|
|
291
301
|
* @throws {RequiredError}
|
|
292
302
|
*/
|
|
293
303
|
thirdPayer(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListReimbursementBillPayerVo>>;
|
|
304
|
+
/**
|
|
305
|
+
*
|
|
306
|
+
* @summary 智家合同列表
|
|
307
|
+
* @param {ZjhtContractListSearchDto} zjhtContractListSearchDto
|
|
308
|
+
* @param {*} [options] Override http request option.
|
|
309
|
+
* @throws {RequiredError}
|
|
310
|
+
*/
|
|
311
|
+
thirdZjhtContractsSearch(zjhtContractListSearchDto: ZjhtContractListSearchDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultZjhtContractDataResult>>;
|
|
294
312
|
};
|
|
295
313
|
/**
|
|
296
314
|
* ReimbursementBillApi - factory interface
|
|
@@ -407,6 +425,14 @@ export declare const ReimbursementBillApiFactory: (configuration?: Configuration
|
|
|
407
425
|
* @throws {RequiredError}
|
|
408
426
|
*/
|
|
409
427
|
thirdPayer(options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListReimbursementBillPayerVo>;
|
|
428
|
+
/**
|
|
429
|
+
*
|
|
430
|
+
* @summary 智家合同列表
|
|
431
|
+
* @param {ReimbursementBillApiThirdZjhtContractsSearchRequest} requestParameters Request parameters.
|
|
432
|
+
* @param {*} [options] Override http request option.
|
|
433
|
+
* @throws {RequiredError}
|
|
434
|
+
*/
|
|
435
|
+
thirdZjhtContractsSearch(requestParameters: ReimbursementBillApiThirdZjhtContractsSearchRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultZjhtContractDataResult>;
|
|
410
436
|
};
|
|
411
437
|
/**
|
|
412
438
|
* Request parameters for reimbursementBillDelete operation in ReimbursementBillApi.
|
|
@@ -660,6 +686,19 @@ export interface ReimbursementBillApiThirdMdmVendorsBankAccountsRequest {
|
|
|
660
686
|
*/
|
|
661
687
|
readonly vendorId: string;
|
|
662
688
|
}
|
|
689
|
+
/**
|
|
690
|
+
* Request parameters for thirdZjhtContractsSearch operation in ReimbursementBillApi.
|
|
691
|
+
* @export
|
|
692
|
+
* @interface ReimbursementBillApiThirdZjhtContractsSearchRequest
|
|
693
|
+
*/
|
|
694
|
+
export interface ReimbursementBillApiThirdZjhtContractsSearchRequest {
|
|
695
|
+
/**
|
|
696
|
+
*
|
|
697
|
+
* @type {ZjhtContractListSearchDto}
|
|
698
|
+
* @memberof ReimbursementBillApiThirdZjhtContractsSearch
|
|
699
|
+
*/
|
|
700
|
+
readonly zjhtContractListSearchDto: ZjhtContractListSearchDto;
|
|
701
|
+
}
|
|
663
702
|
/**
|
|
664
703
|
* ReimbursementBillApi - object-oriented interface
|
|
665
704
|
* @export
|
|
@@ -791,4 +830,13 @@ export declare class ReimbursementBillApi extends BaseAPI {
|
|
|
791
830
|
* @memberof ReimbursementBillApi
|
|
792
831
|
*/
|
|
793
832
|
thirdPayer(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListReimbursementBillPayerVo, any, {}>>;
|
|
833
|
+
/**
|
|
834
|
+
*
|
|
835
|
+
* @summary 智家合同列表
|
|
836
|
+
* @param {ReimbursementBillApiThirdZjhtContractsSearchRequest} requestParameters Request parameters.
|
|
837
|
+
* @param {*} [options] Override http request option.
|
|
838
|
+
* @throws {RequiredError}
|
|
839
|
+
* @memberof ReimbursementBillApi
|
|
840
|
+
*/
|
|
841
|
+
thirdZjhtContractsSearch(requestParameters: ReimbursementBillApiThirdZjhtContractsSearchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultZjhtContractDataResult, any, {}>>;
|
|
794
842
|
}
|
|
@@ -553,6 +553,39 @@ export const ReimbursementBillApiAxiosParamCreator = function (configuration) {
|
|
|
553
553
|
options: localVarRequestOptions,
|
|
554
554
|
};
|
|
555
555
|
}),
|
|
556
|
+
/**
|
|
557
|
+
*
|
|
558
|
+
* @summary 智家合同列表
|
|
559
|
+
* @param {ZjhtContractListSearchDto} zjhtContractListSearchDto
|
|
560
|
+
* @param {*} [options] Override http request option.
|
|
561
|
+
* @throws {RequiredError}
|
|
562
|
+
*/
|
|
563
|
+
thirdZjhtContractsSearch: (zjhtContractListSearchDto_1, ...args_1) => __awaiter(this, [zjhtContractListSearchDto_1, ...args_1], void 0, function* (zjhtContractListSearchDto, options = {}) {
|
|
564
|
+
// verify required parameter 'zjhtContractListSearchDto' is not null or undefined
|
|
565
|
+
assertParamExists('thirdZjhtContractsSearch', 'zjhtContractListSearchDto', zjhtContractListSearchDto);
|
|
566
|
+
const localVarPath = `/gizone/reimbursement-bill/third/zjht/contracts/search`;
|
|
567
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
568
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
569
|
+
let baseOptions;
|
|
570
|
+
if (configuration) {
|
|
571
|
+
baseOptions = configuration.baseOptions;
|
|
572
|
+
}
|
|
573
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
574
|
+
const localVarHeaderParameter = {};
|
|
575
|
+
const localVarQueryParameter = {};
|
|
576
|
+
// authentication tokenScheme required
|
|
577
|
+
// http bearer authentication required
|
|
578
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
579
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
580
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
581
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
582
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
583
|
+
localVarRequestOptions.data = serializeDataIfNeeded(zjhtContractListSearchDto, localVarRequestOptions, configuration);
|
|
584
|
+
return {
|
|
585
|
+
url: toPathString(localVarUrlObj),
|
|
586
|
+
options: localVarRequestOptions,
|
|
587
|
+
};
|
|
588
|
+
}),
|
|
556
589
|
};
|
|
557
590
|
};
|
|
558
591
|
/**
|
|
@@ -800,6 +833,22 @@ export const ReimbursementBillApiFp = function (configuration) {
|
|
|
800
833
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
801
834
|
});
|
|
802
835
|
},
|
|
836
|
+
/**
|
|
837
|
+
*
|
|
838
|
+
* @summary 智家合同列表
|
|
839
|
+
* @param {ZjhtContractListSearchDto} zjhtContractListSearchDto
|
|
840
|
+
* @param {*} [options] Override http request option.
|
|
841
|
+
* @throws {RequiredError}
|
|
842
|
+
*/
|
|
843
|
+
thirdZjhtContractsSearch(zjhtContractListSearchDto, options) {
|
|
844
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
845
|
+
var _a, _b, _c;
|
|
846
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.thirdZjhtContractsSearch(zjhtContractListSearchDto, options);
|
|
847
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
848
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ReimbursementBillApi.thirdZjhtContractsSearch']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
849
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
850
|
+
});
|
|
851
|
+
},
|
|
803
852
|
};
|
|
804
853
|
};
|
|
805
854
|
/**
|
|
@@ -947,6 +996,16 @@ export const ReimbursementBillApiFactory = function (configuration, basePath, ax
|
|
|
947
996
|
thirdPayer(options) {
|
|
948
997
|
return localVarFp.thirdPayer(options).then((request) => request(axios, basePath));
|
|
949
998
|
},
|
|
999
|
+
/**
|
|
1000
|
+
*
|
|
1001
|
+
* @summary 智家合同列表
|
|
1002
|
+
* @param {ReimbursementBillApiThirdZjhtContractsSearchRequest} requestParameters Request parameters.
|
|
1003
|
+
* @param {*} [options] Override http request option.
|
|
1004
|
+
* @throws {RequiredError}
|
|
1005
|
+
*/
|
|
1006
|
+
thirdZjhtContractsSearch(requestParameters, options) {
|
|
1007
|
+
return localVarFp.thirdZjhtContractsSearch(requestParameters.zjhtContractListSearchDto, options).then((request) => request(axios, basePath));
|
|
1008
|
+
},
|
|
950
1009
|
};
|
|
951
1010
|
};
|
|
952
1011
|
/**
|
|
@@ -1108,4 +1167,15 @@ export class ReimbursementBillApi extends BaseAPI {
|
|
|
1108
1167
|
thirdPayer(options) {
|
|
1109
1168
|
return ReimbursementBillApiFp(this.configuration).thirdPayer(options).then((request) => request(this.axios, this.basePath));
|
|
1110
1169
|
}
|
|
1170
|
+
/**
|
|
1171
|
+
*
|
|
1172
|
+
* @summary 智家合同列表
|
|
1173
|
+
* @param {ReimbursementBillApiThirdZjhtContractsSearchRequest} requestParameters Request parameters.
|
|
1174
|
+
* @param {*} [options] Override http request option.
|
|
1175
|
+
* @throws {RequiredError}
|
|
1176
|
+
* @memberof ReimbursementBillApi
|
|
1177
|
+
*/
|
|
1178
|
+
thirdZjhtContractsSearch(requestParameters, options) {
|
|
1179
|
+
return ReimbursementBillApiFp(this.configuration).thirdZjhtContractsSearch(requestParameters.zjhtContractListSearchDto, options).then((request) => request(this.axios, this.basePath));
|
|
1180
|
+
}
|
|
1111
1181
|
}
|
|
@@ -372,6 +372,7 @@ export * from './json-result-void';
|
|
|
372
372
|
export * from './json-result-work-order-dept-settings-entity';
|
|
373
373
|
export * from './json-result-work-order-detail-dto';
|
|
374
374
|
export * from './json-result-work-order-issue-type-settings-entity';
|
|
375
|
+
export * from './json-result-zjht-contract-data-result';
|
|
375
376
|
export * from './login-body';
|
|
376
377
|
export * from './login-type-enum';
|
|
377
378
|
export * from './maintenace-daily-abnormal-cause-type-enum';
|
|
@@ -661,3 +662,7 @@ export * from './wx-mp-get-self-menu-info-result';
|
|
|
661
662
|
export * from './wx-mp-menu';
|
|
662
663
|
export * from './wx-mp-self-menu-button';
|
|
663
664
|
export * from './wx-mp-self-menu-info';
|
|
665
|
+
export * from './zjht-contract';
|
|
666
|
+
export * from './zjht-contract-data-result';
|
|
667
|
+
export * from './zjht-contract-detail';
|
|
668
|
+
export * from './zjht-contract-list-search-dto';
|
package/dist/esm/models/index.js
CHANGED
|
@@ -372,6 +372,7 @@ export * from './json-result-void';
|
|
|
372
372
|
export * from './json-result-work-order-dept-settings-entity';
|
|
373
373
|
export * from './json-result-work-order-detail-dto';
|
|
374
374
|
export * from './json-result-work-order-issue-type-settings-entity';
|
|
375
|
+
export * from './json-result-zjht-contract-data-result';
|
|
375
376
|
export * from './login-body';
|
|
376
377
|
export * from './login-type-enum';
|
|
377
378
|
export * from './maintenace-daily-abnormal-cause-type-enum';
|
|
@@ -661,3 +662,7 @@ export * from './wx-mp-get-self-menu-info-result';
|
|
|
661
662
|
export * from './wx-mp-menu';
|
|
662
663
|
export * from './wx-mp-self-menu-button';
|
|
663
664
|
export * from './wx-mp-self-menu-info';
|
|
665
|
+
export * from './zjht-contract';
|
|
666
|
+
export * from './zjht-contract-data-result';
|
|
667
|
+
export * from './zjht-contract-detail';
|
|
668
|
+
export * from './zjht-contract-list-search-dto';
|
|
@@ -36,10 +36,10 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
36
36
|
'records'?: Array<EnergyCostRecordInfoVO>;
|
|
37
37
|
/**
|
|
38
38
|
*
|
|
39
|
-
* @type {
|
|
39
|
+
* @type {boolean}
|
|
40
40
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
41
41
|
*/
|
|
42
|
-
'
|
|
42
|
+
'searchCount'?: boolean;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
45
|
* @type {boolean}
|
|
@@ -49,10 +49,10 @@ export interface IPageEnergyCostRecordInfoVO {
|
|
|
49
49
|
'hitCount'?: boolean;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
|
-
* @type {
|
|
52
|
+
* @type {number}
|
|
53
53
|
* @memberof IPageEnergyCostRecordInfoVO
|
|
54
54
|
*/
|
|
55
|
-
'
|
|
55
|
+
'pages'?: number;
|
|
56
56
|
/**
|
|
57
57
|
*
|
|
58
58
|
* @type {number}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OpenAPI definition
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { BaseErrorResult } from './base-error-result';
|
|
13
|
+
import type { ZjhtContractDataResult } from './zjht-contract-data-result';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface JsonResultZjhtContractDataResult
|
|
18
|
+
*/
|
|
19
|
+
export interface JsonResultZjhtContractDataResult {
|
|
20
|
+
/**
|
|
21
|
+
* 错误码,0:成功,其他:失败
|
|
22
|
+
* @type {number}
|
|
23
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
24
|
+
*/
|
|
25
|
+
'code'?: number;
|
|
26
|
+
/**
|
|
27
|
+
* 错误消息
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
30
|
+
*/
|
|
31
|
+
'msg'?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 错误堆栈
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
36
|
+
*/
|
|
37
|
+
'stacks'?: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {ZjhtContractDataResult}
|
|
41
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
42
|
+
*/
|
|
43
|
+
'data'?: ZjhtContractDataResult | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {BaseErrorResult}
|
|
47
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
48
|
+
*/
|
|
49
|
+
'error'?: BaseErrorResult | null;
|
|
50
|
+
/**
|
|
51
|
+
* 日志追踪ID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
54
|
+
*/
|
|
55
|
+
'traceId'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
* requestId
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof JsonResultZjhtContractDataResult
|
|
60
|
+
*/
|
|
61
|
+
'requestId'?: string | null;
|
|
62
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* OpenAPI definition
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
export {};
|