@saritasa/crm-delmar-core-sdk 0.1.67 → 0.1.69
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/README.md +2 -2
- package/api/tasks-api.service.d.ts +23 -1
- package/api/tasks-api.serviceInterface.d.ts +12 -0
- package/api/users-api.service.d.ts +23 -1
- package/api/users-api.serviceInterface.d.ts +17 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +144 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/branch-period-for-utilization-report.dto.d.ts +24 -0
- package/model/models.d.ts +8 -0
- package/model/simple-component-request.dto.d.ts +15 -0
- package/model/simple-sprint-request.dto.d.ts +15 -0
- package/model/task.dto.d.ts +1 -1
- package/model/update-task-request.dto.d.ts +15 -0
- package/model/update-task.dto.d.ts +50 -0
- package/model/user-day-for-utilization-report.dto.d.ts +22 -0
- package/model/user-period-for-utilization-report.dto.d.ts +25 -0
- package/model/user-utilization-report.dto.d.ts +35 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,9 +4,10 @@ import { PaginatedTaskListDto } from "../model/paginated-task-list.dto";
|
|
|
4
4
|
import { TaskDto } from "../model/task.dto";
|
|
5
5
|
import { TaskStatsDto } from "../model/task-stats.dto";
|
|
6
6
|
import { TaskStatusesDto } from "../model/task-statuses.dto";
|
|
7
|
+
import { UpdateTaskDto } from "../model/update-task.dto";
|
|
7
8
|
import { Configuration } from "../configuration";
|
|
8
9
|
import { BaseService } from "../api.base.service";
|
|
9
|
-
import { TasksApiServiceInterface, TasksListRequestParams, TasksRetrieveRequestParams, TasksStatsRetrieveRequestParams, TasksStatusesRetrieveRequestParams } from "./tasks-api.serviceInterface";
|
|
10
|
+
import { TasksApiServiceInterface, TasksListRequestParams, TasksRetrieveRequestParams, TasksStatsRetrieveRequestParams, TasksStatusesRetrieveRequestParams, TasksUpdateRequestParams } from "./tasks-api.serviceInterface";
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class TasksApiService extends BaseService implements TasksApiServiceInterface {
|
|
12
13
|
protected httpClient: HttpClient;
|
|
@@ -95,6 +96,27 @@ export declare class TasksApiService extends BaseService implements TasksApiServ
|
|
|
95
96
|
context?: HttpContext;
|
|
96
97
|
transferCache?: boolean;
|
|
97
98
|
}): Observable<HttpEvent<TaskStatusesDto>>;
|
|
99
|
+
/**
|
|
100
|
+
* Api viewset for Task model.
|
|
101
|
+
* @param requestParameters
|
|
102
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
103
|
+
* @param reportProgress flag to report request and response progress.
|
|
104
|
+
*/
|
|
105
|
+
tasksUpdate(requestParameters: TasksUpdateRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
106
|
+
httpHeaderAccept?: "application/json";
|
|
107
|
+
context?: HttpContext;
|
|
108
|
+
transferCache?: boolean;
|
|
109
|
+
}): Observable<UpdateTaskDto>;
|
|
110
|
+
tasksUpdate(requestParameters: TasksUpdateRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
111
|
+
httpHeaderAccept?: "application/json";
|
|
112
|
+
context?: HttpContext;
|
|
113
|
+
transferCache?: boolean;
|
|
114
|
+
}): Observable<HttpResponse<UpdateTaskDto>>;
|
|
115
|
+
tasksUpdate(requestParameters: TasksUpdateRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
116
|
+
httpHeaderAccept?: "application/json";
|
|
117
|
+
context?: HttpContext;
|
|
118
|
+
transferCache?: boolean;
|
|
119
|
+
}): Observable<HttpEvent<UpdateTaskDto>>;
|
|
98
120
|
static ɵfac: i0.ɵɵFactoryDeclaration<TasksApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
99
121
|
static ɵprov: i0.ɵɵInjectableDeclaration<TasksApiService>;
|
|
100
122
|
}
|
|
@@ -13,6 +13,8 @@ import { PaginatedTaskListDto } from "../model/models";
|
|
|
13
13
|
import { TaskDto } from "../model/models";
|
|
14
14
|
import { TaskStatsDto } from "../model/models";
|
|
15
15
|
import { TaskStatusesDto } from "../model/models";
|
|
16
|
+
import { UpdateTaskDto } from "../model/models";
|
|
17
|
+
import { UpdateTaskRequestDto } from "../model/models";
|
|
16
18
|
import { Configuration } from "../configuration";
|
|
17
19
|
export interface TasksListRequestParams {
|
|
18
20
|
assignee?: number;
|
|
@@ -115,6 +117,10 @@ export interface TasksStatusesRetrieveRequestParams {
|
|
|
115
117
|
updatedBy?: number;
|
|
116
118
|
updatedByIn?: Array<number>;
|
|
117
119
|
}
|
|
120
|
+
export interface TasksUpdateRequestParams {
|
|
121
|
+
id: number;
|
|
122
|
+
updateTaskRequestDto: UpdateTaskRequestDto;
|
|
123
|
+
}
|
|
118
124
|
export interface TasksApiServiceInterface {
|
|
119
125
|
defaultHeaders: HttpHeaders;
|
|
120
126
|
configuration: Configuration;
|
|
@@ -142,4 +148,10 @@ export interface TasksApiServiceInterface {
|
|
|
142
148
|
* @param requestParameters
|
|
143
149
|
*/
|
|
144
150
|
tasksStatusesRetrieve(requestParameters: TasksStatusesRetrieveRequestParams, extraHttpRequestParams?: any): Observable<TaskStatusesDto>;
|
|
151
|
+
/**
|
|
152
|
+
*
|
|
153
|
+
* Api viewset for Task model.
|
|
154
|
+
* @param requestParameters
|
|
155
|
+
*/
|
|
156
|
+
tasksUpdate(requestParameters: TasksUpdateRequestParams, extraHttpRequestParams?: any): Observable<UpdateTaskDto>;
|
|
145
157
|
}
|
|
@@ -4,10 +4,11 @@ import { PaginatedUserListDto } from "../model/paginated-user-list.dto";
|
|
|
4
4
|
import { SimpleUserDto } from "../model/simple-user.dto";
|
|
5
5
|
import { UserDailyTabularReportDto } from "../model/user-daily-tabular-report.dto";
|
|
6
6
|
import { UserDto } from "../model/user.dto";
|
|
7
|
+
import { UserUtilizationReportDto } from "../model/user-utilization-report.dto";
|
|
7
8
|
import { UtilizationChartPointDto } from "../model/utilization-chart-point.dto";
|
|
8
9
|
import { Configuration } from "../configuration";
|
|
9
10
|
import { BaseService } from "../api.base.service";
|
|
10
|
-
import { UsersApiServiceInterface, UsersCreateRequestParams, UsersDailyTabularReportListRequestParams, UsersExpectedPeriodsApproversListRequestParams, UsersListRequestParams, UsersPartialUpdateRequestParams, UsersRetrieveRequestParams, UsersUpdateRequestParams, UsersUtilizationChartListRequestParams } from "./users-api.serviceInterface";
|
|
11
|
+
import { UsersApiServiceInterface, UsersCreateRequestParams, UsersDailyTabularReportListRequestParams, UsersExpectedPeriodsApproversListRequestParams, UsersListRequestParams, UsersPartialUpdateRequestParams, UsersRetrieveRequestParams, UsersUpdateRequestParams, UsersUtilizationChartListRequestParams, UsersUtilizationReportListRequestParams } from "./users-api.serviceInterface";
|
|
11
12
|
import * as i0 from "@angular/core";
|
|
12
13
|
export declare class UsersApiService extends BaseService implements UsersApiServiceInterface {
|
|
13
14
|
protected httpClient: HttpClient;
|
|
@@ -180,6 +181,27 @@ export declare class UsersApiService extends BaseService implements UsersApiServ
|
|
|
180
181
|
context?: HttpContext;
|
|
181
182
|
transferCache?: boolean;
|
|
182
183
|
}): Observable<HttpEvent<Array<UtilizationChartPointDto>>>;
|
|
184
|
+
/**
|
|
185
|
+
* Get utilization report for users.
|
|
186
|
+
* @param requestParameters
|
|
187
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
188
|
+
* @param reportProgress flag to report request and response progress.
|
|
189
|
+
*/
|
|
190
|
+
usersUtilizationReportList(requestParameters: UsersUtilizationReportListRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
191
|
+
httpHeaderAccept?: "application/json";
|
|
192
|
+
context?: HttpContext;
|
|
193
|
+
transferCache?: boolean;
|
|
194
|
+
}): Observable<Array<UserUtilizationReportDto>>;
|
|
195
|
+
usersUtilizationReportList(requestParameters: UsersUtilizationReportListRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
196
|
+
httpHeaderAccept?: "application/json";
|
|
197
|
+
context?: HttpContext;
|
|
198
|
+
transferCache?: boolean;
|
|
199
|
+
}): Observable<HttpResponse<Array<UserUtilizationReportDto>>>;
|
|
200
|
+
usersUtilizationReportList(requestParameters: UsersUtilizationReportListRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
201
|
+
httpHeaderAccept?: "application/json";
|
|
202
|
+
context?: HttpContext;
|
|
203
|
+
transferCache?: boolean;
|
|
204
|
+
}): Observable<HttpEvent<Array<UserUtilizationReportDto>>>;
|
|
183
205
|
static ɵfac: i0.ɵɵFactoryDeclaration<UsersApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
184
206
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersApiService>;
|
|
185
207
|
}
|
|
@@ -15,6 +15,7 @@ import { SimpleUserDto } from "../model/models";
|
|
|
15
15
|
import { UserDailyTabularReportDto } from "../model/models";
|
|
16
16
|
import { UserDto } from "../model/models";
|
|
17
17
|
import { UserRequestDto } from "../model/models";
|
|
18
|
+
import { UserUtilizationReportDto } from "../model/models";
|
|
18
19
|
import { UtilizationChartPointDto } from "../model/models";
|
|
19
20
|
import { Configuration } from "../configuration";
|
|
20
21
|
export interface UsersCreateRequestParams {
|
|
@@ -91,6 +92,16 @@ export interface UsersUtilizationChartListRequestParams {
|
|
|
91
92
|
workType?: number;
|
|
92
93
|
workTypeIn?: Array<number>;
|
|
93
94
|
}
|
|
95
|
+
export interface UsersUtilizationReportListRequestParams {
|
|
96
|
+
period: string;
|
|
97
|
+
branch?: number;
|
|
98
|
+
branchIn?: Array<number>;
|
|
99
|
+
id?: number;
|
|
100
|
+
idIn?: Array<number>;
|
|
101
|
+
ordering?: string;
|
|
102
|
+
workType?: number;
|
|
103
|
+
workTypeIn?: Array<number>;
|
|
104
|
+
}
|
|
94
105
|
export interface UsersApiServiceInterface {
|
|
95
106
|
defaultHeaders: HttpHeaders;
|
|
96
107
|
configuration: Configuration;
|
|
@@ -142,4 +153,10 @@ export interface UsersApiServiceInterface {
|
|
|
142
153
|
* @param requestParameters
|
|
143
154
|
*/
|
|
144
155
|
usersUtilizationChartList(requestParameters: UsersUtilizationChartListRequestParams, extraHttpRequestParams?: any): Observable<Array<UtilizationChartPointDto>>;
|
|
156
|
+
/**
|
|
157
|
+
*
|
|
158
|
+
* Get utilization report for users.
|
|
159
|
+
* @param requestParameters
|
|
160
|
+
*/
|
|
161
|
+
usersUtilizationReportList(requestParameters: UsersUtilizationReportListRequestParams, extraHttpRequestParams?: any): Observable<Array<UserUtilizationReportDto>>;
|
|
145
162
|
}
|
|
@@ -15089,6 +15089,57 @@ class TasksApiService extends BaseService {
|
|
|
15089
15089
|
reportProgress: reportProgress,
|
|
15090
15090
|
});
|
|
15091
15091
|
}
|
|
15092
|
+
tasksUpdate(requestParameters, observe = "body", reportProgress = false, options) {
|
|
15093
|
+
const id = requestParameters?.id;
|
|
15094
|
+
if (id === null || id === undefined) {
|
|
15095
|
+
throw new Error("Required parameter id was null or undefined when calling tasksUpdate.");
|
|
15096
|
+
}
|
|
15097
|
+
const updateTaskRequestDto = requestParameters?.updateTaskRequestDto;
|
|
15098
|
+
if (updateTaskRequestDto === null || updateTaskRequestDto === undefined) {
|
|
15099
|
+
throw new Error("Required parameter updateTaskRequestDto was null or undefined when calling tasksUpdate.");
|
|
15100
|
+
}
|
|
15101
|
+
let localVarHeaders = this.defaultHeaders;
|
|
15102
|
+
// authentication (cookieAuth) required
|
|
15103
|
+
// authentication (jwtAuth) required
|
|
15104
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("jwtAuth", "Authorization", localVarHeaders, "Bearer ");
|
|
15105
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
15106
|
+
this.configuration.selectHeaderAccept(["application/json"]);
|
|
15107
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
15108
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
15109
|
+
}
|
|
15110
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
15111
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
15112
|
+
// to determine the Content-Type header
|
|
15113
|
+
const consumes = ["application/json"];
|
|
15114
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
15115
|
+
if (httpContentTypeSelected !== undefined) {
|
|
15116
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
15117
|
+
}
|
|
15118
|
+
let responseType_ = "json";
|
|
15119
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
15120
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
15121
|
+
responseType_ = "text";
|
|
15122
|
+
}
|
|
15123
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
15124
|
+
responseType_ = "json";
|
|
15125
|
+
}
|
|
15126
|
+
else {
|
|
15127
|
+
responseType_ = "blob";
|
|
15128
|
+
}
|
|
15129
|
+
}
|
|
15130
|
+
let localVarPath = `/api/v1/tasks/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}/`;
|
|
15131
|
+
const { basePath, withCredentials } = this.configuration;
|
|
15132
|
+
return this.httpClient.request("put", `${basePath}${localVarPath}`, {
|
|
15133
|
+
context: localVarHttpContext,
|
|
15134
|
+
body: updateTaskRequestDto,
|
|
15135
|
+
responseType: responseType_,
|
|
15136
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
15137
|
+
headers: localVarHeaders,
|
|
15138
|
+
observe: observe,
|
|
15139
|
+
transferCache: localVarTransferCache,
|
|
15140
|
+
reportProgress: reportProgress,
|
|
15141
|
+
});
|
|
15142
|
+
}
|
|
15092
15143
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: TasksApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
15093
15144
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: TasksApiService, providedIn: "root" });
|
|
15094
15145
|
}
|
|
@@ -17226,6 +17277,69 @@ class UsersApiService extends BaseService {
|
|
|
17226
17277
|
reportProgress: reportProgress,
|
|
17227
17278
|
});
|
|
17228
17279
|
}
|
|
17280
|
+
usersUtilizationReportList(requestParameters, observe = "body", reportProgress = false, options) {
|
|
17281
|
+
const period = requestParameters?.period;
|
|
17282
|
+
if (period === null || period === undefined) {
|
|
17283
|
+
throw new Error("Required parameter period was null or undefined when calling usersUtilizationReportList.");
|
|
17284
|
+
}
|
|
17285
|
+
const branch = requestParameters?.branch;
|
|
17286
|
+
const branchIn = requestParameters?.branchIn;
|
|
17287
|
+
const id = requestParameters?.id;
|
|
17288
|
+
const idIn = requestParameters?.idIn;
|
|
17289
|
+
const ordering = requestParameters?.ordering;
|
|
17290
|
+
const workType = requestParameters?.workType;
|
|
17291
|
+
const workTypeIn = requestParameters?.workTypeIn;
|
|
17292
|
+
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
17293
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, branch, "branch");
|
|
17294
|
+
if (branchIn) {
|
|
17295
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...branchIn].join(COLLECTION_FORMATS["csv"]), "branch__in");
|
|
17296
|
+
}
|
|
17297
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, id, "id");
|
|
17298
|
+
if (idIn) {
|
|
17299
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...idIn].join(COLLECTION_FORMATS["csv"]), "id__in");
|
|
17300
|
+
}
|
|
17301
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, ordering, "ordering");
|
|
17302
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, period, "period");
|
|
17303
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, workType, "work_type");
|
|
17304
|
+
if (workTypeIn) {
|
|
17305
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...workTypeIn].join(COLLECTION_FORMATS["csv"]), "work_type__in");
|
|
17306
|
+
}
|
|
17307
|
+
let localVarHeaders = this.defaultHeaders;
|
|
17308
|
+
// authentication (cookieAuth) required
|
|
17309
|
+
// authentication (jwtAuth) required
|
|
17310
|
+
localVarHeaders = this.configuration.addCredentialToHeaders("jwtAuth", "Authorization", localVarHeaders, "Bearer ");
|
|
17311
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
|
|
17312
|
+
this.configuration.selectHeaderAccept(["application/json"]);
|
|
17313
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
17314
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
17315
|
+
}
|
|
17316
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
17317
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
17318
|
+
let responseType_ = "json";
|
|
17319
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
17320
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
17321
|
+
responseType_ = "text";
|
|
17322
|
+
}
|
|
17323
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
17324
|
+
responseType_ = "json";
|
|
17325
|
+
}
|
|
17326
|
+
else {
|
|
17327
|
+
responseType_ = "blob";
|
|
17328
|
+
}
|
|
17329
|
+
}
|
|
17330
|
+
let localVarPath = `/api/v1/users/utilization-report/`;
|
|
17331
|
+
const { basePath, withCredentials } = this.configuration;
|
|
17332
|
+
return this.httpClient.request("get", `${basePath}${localVarPath}`, {
|
|
17333
|
+
context: localVarHttpContext,
|
|
17334
|
+
params: localVarQueryParameters,
|
|
17335
|
+
responseType: responseType_,
|
|
17336
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
17337
|
+
headers: localVarHeaders,
|
|
17338
|
+
observe: observe,
|
|
17339
|
+
transferCache: localVarTransferCache,
|
|
17340
|
+
reportProgress: reportProgress,
|
|
17341
|
+
});
|
|
17342
|
+
}
|
|
17229
17343
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: UsersApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
17230
17344
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: UsersApiService, providedIn: "root" });
|
|
17231
17345
|
}
|
|
@@ -19287,6 +19401,26 @@ var ServerErrorEnumDto;
|
|
|
19287
19401
|
* Do not edit the class manually.
|
|
19288
19402
|
*/
|
|
19289
19403
|
|
|
19404
|
+
/**
|
|
19405
|
+
* Delmar Api
|
|
19406
|
+
*
|
|
19407
|
+
*
|
|
19408
|
+
*
|
|
19409
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
19410
|
+
* https://openapi-generator.tech
|
|
19411
|
+
* Do not edit the class manually.
|
|
19412
|
+
*/
|
|
19413
|
+
|
|
19414
|
+
/**
|
|
19415
|
+
* Delmar Api
|
|
19416
|
+
*
|
|
19417
|
+
*
|
|
19418
|
+
*
|
|
19419
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
19420
|
+
* https://openapi-generator.tech
|
|
19421
|
+
* Do not edit the class manually.
|
|
19422
|
+
*/
|
|
19423
|
+
|
|
19290
19424
|
/**
|
|
19291
19425
|
* Delmar Api
|
|
19292
19426
|
*
|
|
@@ -19423,6 +19557,16 @@ var TaskProgressStateEnumDto;
|
|
|
19423
19557
|
* Do not edit the class manually.
|
|
19424
19558
|
*/
|
|
19425
19559
|
|
|
19560
|
+
/**
|
|
19561
|
+
* Delmar Api
|
|
19562
|
+
*
|
|
19563
|
+
*
|
|
19564
|
+
*
|
|
19565
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
19566
|
+
* https://openapi-generator.tech
|
|
19567
|
+
* Do not edit the class manually.
|
|
19568
|
+
*/
|
|
19569
|
+
|
|
19426
19570
|
/**
|
|
19427
19571
|
* Delmar Api
|
|
19428
19572
|
*
|