@saritasa/crm-delmar-core-sdk 0.0.132 → 0.0.133
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/api.d.ts +4 -1
- package/api/export-user-periods-api.service.d.ts +103 -0
- package/api/export-user-periods-api.serviceInterface.d.ts +74 -0
- package/esm2022/api/api.mjs +5 -1
- package/esm2022/api/export-user-periods-api.service.mjs +417 -0
- package/esm2022/api/export-user-periods-api.serviceInterface.mjs +2 -0
- package/esm2022/model/export-user-periods-cancel-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/export-user-periods-list-error-response400.dto.mjs +2 -0
- package/esm2022/model/export-user-periods-retrieve-error-response400.dto.mjs +2 -0
- package/esm2022/model/export-user-periods-start-create-error-response400.dto.mjs +2 -0
- package/esm2022/model/export-user-periods-start-create-error.dto.mjs +2 -0
- package/esm2022/model/export-user-periods-start-create-file-format-error-component.dto.mjs +20 -0
- package/esm2022/model/export-user-periods-start-create-non-field-errors-error-component.dto.mjs +19 -0
- package/esm2022/model/export-user-periods-start-create-validation-error.dto.mjs +2 -0
- package/esm2022/model/models.mjs +10 -1
- package/esm2022/model/user-period-resource-create-export-job-request.dto.mjs +2 -0
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs +449 -1
- package/fesm2022/saritasa-crm-delmar-core-sdk.mjs.map +1 -1
- package/model/export-user-periods-cancel-create-error-response400.dto.d.ts +15 -0
- package/model/export-user-periods-list-error-response400.dto.d.ts +15 -0
- package/model/export-user-periods-retrieve-error-response400.dto.d.ts +15 -0
- package/model/export-user-periods-start-create-error-response400.dto.d.ts +16 -0
- package/model/export-user-periods-start-create-error.dto.d.ts +16 -0
- package/model/export-user-periods-start-create-file-format-error-component.dto.d.ts +28 -0
- package/model/export-user-periods-start-create-non-field-errors-error-component.dto.d.ts +27 -0
- package/model/export-user-periods-start-create-validation-error.dto.d.ts +15 -0
- package/model/models.d.ts +9 -0
- package/model/user-period-resource-create-export-job-request.dto.d.ts +16 -0
- package/package.json +2 -2
|
@@ -4147,6 +4147,414 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
4147
4147
|
type: Optional
|
|
4148
4148
|
}] }] });
|
|
4149
4149
|
|
|
4150
|
+
/**
|
|
4151
|
+
* Delmar Api
|
|
4152
|
+
*
|
|
4153
|
+
*
|
|
4154
|
+
*
|
|
4155
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4156
|
+
* https://openapi-generator.tech
|
|
4157
|
+
* Do not edit the class manually.
|
|
4158
|
+
*/
|
|
4159
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
4160
|
+
class ExportUserPeriodsApiService {
|
|
4161
|
+
httpClient;
|
|
4162
|
+
basePath = "";
|
|
4163
|
+
defaultHeaders = new HttpHeaders();
|
|
4164
|
+
configuration = new Configuration();
|
|
4165
|
+
encoder;
|
|
4166
|
+
constructor(httpClient, basePath, configuration) {
|
|
4167
|
+
this.httpClient = httpClient;
|
|
4168
|
+
if (configuration) {
|
|
4169
|
+
this.configuration = configuration;
|
|
4170
|
+
}
|
|
4171
|
+
if (typeof this.configuration.basePath !== "string") {
|
|
4172
|
+
const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;
|
|
4173
|
+
if (firstBasePath != undefined) {
|
|
4174
|
+
basePath = firstBasePath;
|
|
4175
|
+
}
|
|
4176
|
+
if (typeof basePath !== "string") {
|
|
4177
|
+
basePath = this.basePath;
|
|
4178
|
+
}
|
|
4179
|
+
this.configuration.basePath = basePath;
|
|
4180
|
+
}
|
|
4181
|
+
this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();
|
|
4182
|
+
}
|
|
4183
|
+
// @ts-ignore
|
|
4184
|
+
addToHttpParams(httpParams, value, key) {
|
|
4185
|
+
if (typeof value === "object" && value instanceof Date === false) {
|
|
4186
|
+
httpParams = this.addToHttpParamsRecursive(httpParams, value);
|
|
4187
|
+
}
|
|
4188
|
+
else {
|
|
4189
|
+
httpParams = this.addToHttpParamsRecursive(httpParams, value, key);
|
|
4190
|
+
}
|
|
4191
|
+
return httpParams;
|
|
4192
|
+
}
|
|
4193
|
+
addToHttpParamsRecursive(httpParams, value, key) {
|
|
4194
|
+
if (value == null) {
|
|
4195
|
+
return httpParams;
|
|
4196
|
+
}
|
|
4197
|
+
if (typeof value === "object") {
|
|
4198
|
+
if (Array.isArray(value)) {
|
|
4199
|
+
value.forEach((elem) => (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)));
|
|
4200
|
+
}
|
|
4201
|
+
else if (value instanceof Date) {
|
|
4202
|
+
if (key != null) {
|
|
4203
|
+
httpParams = httpParams.append(key, value.toISOString().substring(0, 10));
|
|
4204
|
+
}
|
|
4205
|
+
else {
|
|
4206
|
+
throw Error("key may not be null if value is Date");
|
|
4207
|
+
}
|
|
4208
|
+
}
|
|
4209
|
+
else {
|
|
4210
|
+
Object.keys(value).forEach((k) => (httpParams = this.addToHttpParamsRecursive(httpParams, value[k], key != null ? `${key}.${k}` : k)));
|
|
4211
|
+
}
|
|
4212
|
+
}
|
|
4213
|
+
else if (key != null) {
|
|
4214
|
+
httpParams = httpParams.append(key, value);
|
|
4215
|
+
}
|
|
4216
|
+
else {
|
|
4217
|
+
throw Error("key may not be null if value is not object or array");
|
|
4218
|
+
}
|
|
4219
|
+
return httpParams;
|
|
4220
|
+
}
|
|
4221
|
+
exportUserPeriodsCancelCreate(requestParameters, observe = "body", reportProgress = false, options) {
|
|
4222
|
+
const id = requestParameters?.id;
|
|
4223
|
+
if (id === null || id === undefined) {
|
|
4224
|
+
throw new Error("Required parameter id was null or undefined when calling exportUserPeriodsCancelCreate.");
|
|
4225
|
+
}
|
|
4226
|
+
let localVarHeaders = this.defaultHeaders;
|
|
4227
|
+
let localVarCredential;
|
|
4228
|
+
// authentication (cookieAuth) required
|
|
4229
|
+
localVarCredential = this.configuration.lookupCredential("cookieAuth");
|
|
4230
|
+
if (localVarCredential) {
|
|
4231
|
+
}
|
|
4232
|
+
// authentication (jwtAuth) required
|
|
4233
|
+
localVarCredential = this.configuration.lookupCredential("jwtAuth");
|
|
4234
|
+
if (localVarCredential) {
|
|
4235
|
+
localVarHeaders = localVarHeaders.set("Authorization", "Bearer " + localVarCredential);
|
|
4236
|
+
}
|
|
4237
|
+
let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
|
|
4238
|
+
if (localVarHttpHeaderAcceptSelected === undefined) {
|
|
4239
|
+
// to determine the Accept header
|
|
4240
|
+
const httpHeaderAccepts = ["application/json"];
|
|
4241
|
+
localVarHttpHeaderAcceptSelected =
|
|
4242
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
4243
|
+
}
|
|
4244
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
4245
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
4246
|
+
}
|
|
4247
|
+
let localVarHttpContext = options && options.context;
|
|
4248
|
+
if (localVarHttpContext === undefined) {
|
|
4249
|
+
localVarHttpContext = new HttpContext();
|
|
4250
|
+
}
|
|
4251
|
+
let localVarTransferCache = options && options.transferCache;
|
|
4252
|
+
if (localVarTransferCache === undefined) {
|
|
4253
|
+
localVarTransferCache = true;
|
|
4254
|
+
}
|
|
4255
|
+
let responseType_ = "json";
|
|
4256
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
4257
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
4258
|
+
responseType_ = "text";
|
|
4259
|
+
}
|
|
4260
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
4261
|
+
responseType_ = "json";
|
|
4262
|
+
}
|
|
4263
|
+
else {
|
|
4264
|
+
responseType_ = "blob";
|
|
4265
|
+
}
|
|
4266
|
+
}
|
|
4267
|
+
let localVarPath = `/api/v1/export-user-periods/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}/cancel/`;
|
|
4268
|
+
return this.httpClient.request("post", `${this.configuration.basePath}${localVarPath}`, {
|
|
4269
|
+
context: localVarHttpContext,
|
|
4270
|
+
responseType: responseType_,
|
|
4271
|
+
withCredentials: this.configuration.withCredentials,
|
|
4272
|
+
headers: localVarHeaders,
|
|
4273
|
+
observe: observe,
|
|
4274
|
+
transferCache: localVarTransferCache,
|
|
4275
|
+
reportProgress: reportProgress,
|
|
4276
|
+
});
|
|
4277
|
+
}
|
|
4278
|
+
exportUserPeriodsList(requestParameters, observe = "body", reportProgress = false, options) {
|
|
4279
|
+
const limit = requestParameters?.limit;
|
|
4280
|
+
const offset = requestParameters?.offset;
|
|
4281
|
+
const ordering = requestParameters?.ordering;
|
|
4282
|
+
const search = requestParameters?.search;
|
|
4283
|
+
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
4284
|
+
if (limit !== undefined && limit !== null) {
|
|
4285
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, limit, "limit");
|
|
4286
|
+
}
|
|
4287
|
+
if (offset !== undefined && offset !== null) {
|
|
4288
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, offset, "offset");
|
|
4289
|
+
}
|
|
4290
|
+
if (ordering !== undefined && ordering !== null) {
|
|
4291
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, ordering, "ordering");
|
|
4292
|
+
}
|
|
4293
|
+
if (search !== undefined && search !== null) {
|
|
4294
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, search, "search");
|
|
4295
|
+
}
|
|
4296
|
+
let localVarHeaders = this.defaultHeaders;
|
|
4297
|
+
let localVarCredential;
|
|
4298
|
+
// authentication (cookieAuth) required
|
|
4299
|
+
localVarCredential = this.configuration.lookupCredential("cookieAuth");
|
|
4300
|
+
if (localVarCredential) {
|
|
4301
|
+
}
|
|
4302
|
+
// authentication (jwtAuth) required
|
|
4303
|
+
localVarCredential = this.configuration.lookupCredential("jwtAuth");
|
|
4304
|
+
if (localVarCredential) {
|
|
4305
|
+
localVarHeaders = localVarHeaders.set("Authorization", "Bearer " + localVarCredential);
|
|
4306
|
+
}
|
|
4307
|
+
let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
|
|
4308
|
+
if (localVarHttpHeaderAcceptSelected === undefined) {
|
|
4309
|
+
// to determine the Accept header
|
|
4310
|
+
const httpHeaderAccepts = ["application/json"];
|
|
4311
|
+
localVarHttpHeaderAcceptSelected =
|
|
4312
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
4313
|
+
}
|
|
4314
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
4315
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
4316
|
+
}
|
|
4317
|
+
let localVarHttpContext = options && options.context;
|
|
4318
|
+
if (localVarHttpContext === undefined) {
|
|
4319
|
+
localVarHttpContext = new HttpContext();
|
|
4320
|
+
}
|
|
4321
|
+
let localVarTransferCache = options && options.transferCache;
|
|
4322
|
+
if (localVarTransferCache === undefined) {
|
|
4323
|
+
localVarTransferCache = true;
|
|
4324
|
+
}
|
|
4325
|
+
let responseType_ = "json";
|
|
4326
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
4327
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
4328
|
+
responseType_ = "text";
|
|
4329
|
+
}
|
|
4330
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
4331
|
+
responseType_ = "json";
|
|
4332
|
+
}
|
|
4333
|
+
else {
|
|
4334
|
+
responseType_ = "blob";
|
|
4335
|
+
}
|
|
4336
|
+
}
|
|
4337
|
+
let localVarPath = `/api/v1/export-user-periods/`;
|
|
4338
|
+
return this.httpClient.request("get", `${this.configuration.basePath}${localVarPath}`, {
|
|
4339
|
+
context: localVarHttpContext,
|
|
4340
|
+
params: localVarQueryParameters,
|
|
4341
|
+
responseType: responseType_,
|
|
4342
|
+
withCredentials: this.configuration.withCredentials,
|
|
4343
|
+
headers: localVarHeaders,
|
|
4344
|
+
observe: observe,
|
|
4345
|
+
transferCache: localVarTransferCache,
|
|
4346
|
+
reportProgress: reportProgress,
|
|
4347
|
+
});
|
|
4348
|
+
}
|
|
4349
|
+
exportUserPeriodsRetrieve(requestParameters, observe = "body", reportProgress = false, options) {
|
|
4350
|
+
const id = requestParameters?.id;
|
|
4351
|
+
if (id === null || id === undefined) {
|
|
4352
|
+
throw new Error("Required parameter id was null or undefined when calling exportUserPeriodsRetrieve.");
|
|
4353
|
+
}
|
|
4354
|
+
let localVarHeaders = this.defaultHeaders;
|
|
4355
|
+
let localVarCredential;
|
|
4356
|
+
// authentication (cookieAuth) required
|
|
4357
|
+
localVarCredential = this.configuration.lookupCredential("cookieAuth");
|
|
4358
|
+
if (localVarCredential) {
|
|
4359
|
+
}
|
|
4360
|
+
// authentication (jwtAuth) required
|
|
4361
|
+
localVarCredential = this.configuration.lookupCredential("jwtAuth");
|
|
4362
|
+
if (localVarCredential) {
|
|
4363
|
+
localVarHeaders = localVarHeaders.set("Authorization", "Bearer " + localVarCredential);
|
|
4364
|
+
}
|
|
4365
|
+
let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
|
|
4366
|
+
if (localVarHttpHeaderAcceptSelected === undefined) {
|
|
4367
|
+
// to determine the Accept header
|
|
4368
|
+
const httpHeaderAccepts = ["application/json"];
|
|
4369
|
+
localVarHttpHeaderAcceptSelected =
|
|
4370
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
4371
|
+
}
|
|
4372
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
4373
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
4374
|
+
}
|
|
4375
|
+
let localVarHttpContext = options && options.context;
|
|
4376
|
+
if (localVarHttpContext === undefined) {
|
|
4377
|
+
localVarHttpContext = new HttpContext();
|
|
4378
|
+
}
|
|
4379
|
+
let localVarTransferCache = options && options.transferCache;
|
|
4380
|
+
if (localVarTransferCache === undefined) {
|
|
4381
|
+
localVarTransferCache = true;
|
|
4382
|
+
}
|
|
4383
|
+
let responseType_ = "json";
|
|
4384
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
4385
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
4386
|
+
responseType_ = "text";
|
|
4387
|
+
}
|
|
4388
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
4389
|
+
responseType_ = "json";
|
|
4390
|
+
}
|
|
4391
|
+
else {
|
|
4392
|
+
responseType_ = "blob";
|
|
4393
|
+
}
|
|
4394
|
+
}
|
|
4395
|
+
let localVarPath = `/api/v1/export-user-periods/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: undefined })}/`;
|
|
4396
|
+
return this.httpClient.request("get", `${this.configuration.basePath}${localVarPath}`, {
|
|
4397
|
+
context: localVarHttpContext,
|
|
4398
|
+
responseType: responseType_,
|
|
4399
|
+
withCredentials: this.configuration.withCredentials,
|
|
4400
|
+
headers: localVarHeaders,
|
|
4401
|
+
observe: observe,
|
|
4402
|
+
transferCache: localVarTransferCache,
|
|
4403
|
+
reportProgress: reportProgress,
|
|
4404
|
+
});
|
|
4405
|
+
}
|
|
4406
|
+
exportUserPeriodsStartCreate(requestParameters, observe = "body", reportProgress = false, options) {
|
|
4407
|
+
const userPeriodResourceCreateExportJobRequestDto = requestParameters?.userPeriodResourceCreateExportJobRequestDto;
|
|
4408
|
+
if (userPeriodResourceCreateExportJobRequestDto === null ||
|
|
4409
|
+
userPeriodResourceCreateExportJobRequestDto === undefined) {
|
|
4410
|
+
throw new Error("Required parameter userPeriodResourceCreateExportJobRequestDto was null or undefined when calling exportUserPeriodsStartCreate.");
|
|
4411
|
+
}
|
|
4412
|
+
const id = requestParameters?.id;
|
|
4413
|
+
const idIn = requestParameters?.idIn;
|
|
4414
|
+
const ordering = requestParameters?.ordering;
|
|
4415
|
+
const periodOverlap = requestParameters?.periodOverlap;
|
|
4416
|
+
const status = requestParameters?.status;
|
|
4417
|
+
const statusIn = requestParameters?.statusIn;
|
|
4418
|
+
const type = requestParameters?.type;
|
|
4419
|
+
const typeIn = requestParameters?.typeIn;
|
|
4420
|
+
const userBranchIdIn = requestParameters?.userBranchIdIn;
|
|
4421
|
+
const userDepartmentIdIn = requestParameters?.userDepartmentIdIn;
|
|
4422
|
+
const userIdIn = requestParameters?.userIdIn;
|
|
4423
|
+
const userStatus = requestParameters?.userStatus;
|
|
4424
|
+
const userStatusIn = requestParameters?.userStatusIn;
|
|
4425
|
+
const userSuperviseesIdIn = requestParameters?.userSuperviseesIdIn;
|
|
4426
|
+
const userSupervisorsIdIn = requestParameters?.userSupervisorsIdIn;
|
|
4427
|
+
const userWorkTypeIdIn = requestParameters?.userWorkTypeIdIn;
|
|
4428
|
+
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
4429
|
+
if (id !== undefined && id !== null) {
|
|
4430
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, id, "id");
|
|
4431
|
+
}
|
|
4432
|
+
if (idIn) {
|
|
4433
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...idIn].join(COLLECTION_FORMATS["csv"]), "id__in");
|
|
4434
|
+
}
|
|
4435
|
+
if (ordering !== undefined && ordering !== null) {
|
|
4436
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, ordering, "ordering");
|
|
4437
|
+
}
|
|
4438
|
+
if (periodOverlap !== undefined && periodOverlap !== null) {
|
|
4439
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, periodOverlap, "period__overlap");
|
|
4440
|
+
}
|
|
4441
|
+
if (status !== undefined && status !== null) {
|
|
4442
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, status, "status");
|
|
4443
|
+
}
|
|
4444
|
+
if (statusIn) {
|
|
4445
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...statusIn].join(COLLECTION_FORMATS["csv"]), "status__in");
|
|
4446
|
+
}
|
|
4447
|
+
if (type !== undefined && type !== null) {
|
|
4448
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, type, "type");
|
|
4449
|
+
}
|
|
4450
|
+
if (typeIn) {
|
|
4451
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...typeIn].join(COLLECTION_FORMATS["csv"]), "type__in");
|
|
4452
|
+
}
|
|
4453
|
+
if (userBranchIdIn) {
|
|
4454
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...userBranchIdIn].join(COLLECTION_FORMATS["csv"]), "user__branch__id__in");
|
|
4455
|
+
}
|
|
4456
|
+
if (userDepartmentIdIn) {
|
|
4457
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...userDepartmentIdIn].join(COLLECTION_FORMATS["csv"]), "user__department__id__in");
|
|
4458
|
+
}
|
|
4459
|
+
if (userIdIn) {
|
|
4460
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...userIdIn].join(COLLECTION_FORMATS["csv"]), "user__id__in");
|
|
4461
|
+
}
|
|
4462
|
+
if (userStatus !== undefined && userStatus !== null) {
|
|
4463
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, userStatus, "user__status");
|
|
4464
|
+
}
|
|
4465
|
+
if (userStatusIn) {
|
|
4466
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...userStatusIn].join(COLLECTION_FORMATS["csv"]), "user__status__in");
|
|
4467
|
+
}
|
|
4468
|
+
if (userSuperviseesIdIn) {
|
|
4469
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...userSuperviseesIdIn].join(COLLECTION_FORMATS["csv"]), "user__supervisees__id__in");
|
|
4470
|
+
}
|
|
4471
|
+
if (userSupervisorsIdIn) {
|
|
4472
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...userSupervisorsIdIn].join(COLLECTION_FORMATS["csv"]), "user__supervisors__id__in");
|
|
4473
|
+
}
|
|
4474
|
+
if (userWorkTypeIdIn) {
|
|
4475
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, [...userWorkTypeIdIn].join(COLLECTION_FORMATS["csv"]), "user__work_type__id__in");
|
|
4476
|
+
}
|
|
4477
|
+
let localVarHeaders = this.defaultHeaders;
|
|
4478
|
+
let localVarCredential;
|
|
4479
|
+
// authentication (cookieAuth) required
|
|
4480
|
+
localVarCredential = this.configuration.lookupCredential("cookieAuth");
|
|
4481
|
+
if (localVarCredential) {
|
|
4482
|
+
}
|
|
4483
|
+
// authentication (jwtAuth) required
|
|
4484
|
+
localVarCredential = this.configuration.lookupCredential("jwtAuth");
|
|
4485
|
+
if (localVarCredential) {
|
|
4486
|
+
localVarHeaders = localVarHeaders.set("Authorization", "Bearer " + localVarCredential);
|
|
4487
|
+
}
|
|
4488
|
+
let localVarHttpHeaderAcceptSelected = options && options.httpHeaderAccept;
|
|
4489
|
+
if (localVarHttpHeaderAcceptSelected === undefined) {
|
|
4490
|
+
// to determine the Accept header
|
|
4491
|
+
const httpHeaderAccepts = ["application/json"];
|
|
4492
|
+
localVarHttpHeaderAcceptSelected =
|
|
4493
|
+
this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
4494
|
+
}
|
|
4495
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
4496
|
+
localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
|
|
4497
|
+
}
|
|
4498
|
+
let localVarHttpContext = options && options.context;
|
|
4499
|
+
if (localVarHttpContext === undefined) {
|
|
4500
|
+
localVarHttpContext = new HttpContext();
|
|
4501
|
+
}
|
|
4502
|
+
let localVarTransferCache = options && options.transferCache;
|
|
4503
|
+
if (localVarTransferCache === undefined) {
|
|
4504
|
+
localVarTransferCache = true;
|
|
4505
|
+
}
|
|
4506
|
+
// to determine the Content-Type header
|
|
4507
|
+
const consumes = [
|
|
4508
|
+
"application/json",
|
|
4509
|
+
"application/x-www-form-urlencoded",
|
|
4510
|
+
"multipart/form-data",
|
|
4511
|
+
];
|
|
4512
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
4513
|
+
if (httpContentTypeSelected !== undefined) {
|
|
4514
|
+
localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
|
|
4515
|
+
}
|
|
4516
|
+
let responseType_ = "json";
|
|
4517
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
4518
|
+
if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
|
|
4519
|
+
responseType_ = "text";
|
|
4520
|
+
}
|
|
4521
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
4522
|
+
responseType_ = "json";
|
|
4523
|
+
}
|
|
4524
|
+
else {
|
|
4525
|
+
responseType_ = "blob";
|
|
4526
|
+
}
|
|
4527
|
+
}
|
|
4528
|
+
let localVarPath = `/api/v1/export-user-periods/start/`;
|
|
4529
|
+
return this.httpClient.request("post", `${this.configuration.basePath}${localVarPath}`, {
|
|
4530
|
+
context: localVarHttpContext,
|
|
4531
|
+
body: userPeriodResourceCreateExportJobRequestDto,
|
|
4532
|
+
params: localVarQueryParameters,
|
|
4533
|
+
responseType: responseType_,
|
|
4534
|
+
withCredentials: this.configuration.withCredentials,
|
|
4535
|
+
headers: localVarHeaders,
|
|
4536
|
+
observe: observe,
|
|
4537
|
+
transferCache: localVarTransferCache,
|
|
4538
|
+
reportProgress: reportProgress,
|
|
4539
|
+
});
|
|
4540
|
+
}
|
|
4541
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ExportUserPeriodsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4542
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ExportUserPeriodsApiService, providedIn: "root" });
|
|
4543
|
+
}
|
|
4544
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ExportUserPeriodsApiService, decorators: [{
|
|
4545
|
+
type: Injectable,
|
|
4546
|
+
args: [{
|
|
4547
|
+
providedIn: "root",
|
|
4548
|
+
}]
|
|
4549
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
4550
|
+
type: Optional
|
|
4551
|
+
}, {
|
|
4552
|
+
type: Inject,
|
|
4553
|
+
args: [BASE_PATH]
|
|
4554
|
+
}] }, { type: Configuration, decorators: [{
|
|
4555
|
+
type: Optional
|
|
4556
|
+
}] }] });
|
|
4557
|
+
|
|
4150
4558
|
/**
|
|
4151
4559
|
* Delmar Api
|
|
4152
4560
|
*
|
|
@@ -13298,6 +13706,7 @@ const APIS = [
|
|
|
13298
13706
|
DismissalReasonsApiService,
|
|
13299
13707
|
ExportJobsApiService,
|
|
13300
13708
|
ExportTasksApiService,
|
|
13709
|
+
ExportUserPeriodsApiService,
|
|
13301
13710
|
ExportUsersApiService,
|
|
13302
13711
|
JiraClientApiService,
|
|
13303
13712
|
JiraInstancesApiService,
|
|
@@ -18533,6 +18942,45 @@ var ExportTasksStartCreateNonFieldErrorsErrorComponentDtoCodeEnum;
|
|
|
18533
18942
|
ExportTasksStartCreateNonFieldErrorsErrorComponentDtoCodeEnum["Null"] = "null";
|
|
18534
18943
|
})(ExportTasksStartCreateNonFieldErrorsErrorComponentDtoCodeEnum || (ExportTasksStartCreateNonFieldErrorsErrorComponentDtoCodeEnum = {}));
|
|
18535
18944
|
|
|
18945
|
+
/**
|
|
18946
|
+
* Delmar Api
|
|
18947
|
+
*
|
|
18948
|
+
*
|
|
18949
|
+
*
|
|
18950
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
18951
|
+
* https://openapi-generator.tech
|
|
18952
|
+
* Do not edit the class manually.
|
|
18953
|
+
*/
|
|
18954
|
+
var ExportUserPeriodsStartCreateFileFormatErrorComponentDtoAttrEnum;
|
|
18955
|
+
(function (ExportUserPeriodsStartCreateFileFormatErrorComponentDtoAttrEnum) {
|
|
18956
|
+
ExportUserPeriodsStartCreateFileFormatErrorComponentDtoAttrEnum["FileFormat"] = "file_format";
|
|
18957
|
+
})(ExportUserPeriodsStartCreateFileFormatErrorComponentDtoAttrEnum || (ExportUserPeriodsStartCreateFileFormatErrorComponentDtoAttrEnum = {}));
|
|
18958
|
+
var ExportUserPeriodsStartCreateFileFormatErrorComponentDtoCodeEnum;
|
|
18959
|
+
(function (ExportUserPeriodsStartCreateFileFormatErrorComponentDtoCodeEnum) {
|
|
18960
|
+
ExportUserPeriodsStartCreateFileFormatErrorComponentDtoCodeEnum["InvalidChoice"] = "invalid_choice";
|
|
18961
|
+
ExportUserPeriodsStartCreateFileFormatErrorComponentDtoCodeEnum["Null"] = "null";
|
|
18962
|
+
ExportUserPeriodsStartCreateFileFormatErrorComponentDtoCodeEnum["Required"] = "required";
|
|
18963
|
+
})(ExportUserPeriodsStartCreateFileFormatErrorComponentDtoCodeEnum || (ExportUserPeriodsStartCreateFileFormatErrorComponentDtoCodeEnum = {}));
|
|
18964
|
+
|
|
18965
|
+
/**
|
|
18966
|
+
* Delmar Api
|
|
18967
|
+
*
|
|
18968
|
+
*
|
|
18969
|
+
*
|
|
18970
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
18971
|
+
* https://openapi-generator.tech
|
|
18972
|
+
* Do not edit the class manually.
|
|
18973
|
+
*/
|
|
18974
|
+
var ExportUserPeriodsStartCreateNonFieldErrorsErrorComponentDtoAttrEnum;
|
|
18975
|
+
(function (ExportUserPeriodsStartCreateNonFieldErrorsErrorComponentDtoAttrEnum) {
|
|
18976
|
+
ExportUserPeriodsStartCreateNonFieldErrorsErrorComponentDtoAttrEnum["NonFieldErrors"] = "non_field_errors";
|
|
18977
|
+
})(ExportUserPeriodsStartCreateNonFieldErrorsErrorComponentDtoAttrEnum || (ExportUserPeriodsStartCreateNonFieldErrorsErrorComponentDtoAttrEnum = {}));
|
|
18978
|
+
var ExportUserPeriodsStartCreateNonFieldErrorsErrorComponentDtoCodeEnum;
|
|
18979
|
+
(function (ExportUserPeriodsStartCreateNonFieldErrorsErrorComponentDtoCodeEnum) {
|
|
18980
|
+
ExportUserPeriodsStartCreateNonFieldErrorsErrorComponentDtoCodeEnum["Invalid"] = "invalid";
|
|
18981
|
+
ExportUserPeriodsStartCreateNonFieldErrorsErrorComponentDtoCodeEnum["Null"] = "null";
|
|
18982
|
+
})(ExportUserPeriodsStartCreateNonFieldErrorsErrorComponentDtoCodeEnum || (ExportUserPeriodsStartCreateNonFieldErrorsErrorComponentDtoCodeEnum = {}));
|
|
18983
|
+
|
|
18536
18984
|
/**
|
|
18537
18985
|
* Delmar Api
|
|
18538
18986
|
*
|
|
@@ -28530,5 +28978,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
28530
28978
|
* Generated bundle index. Do not edit.
|
|
28531
28979
|
*/
|
|
28532
28980
|
|
|
28533
|
-
export { APIS, ApiModule, BASE_PATH, BillingFrequencyEnumDto, BillingMethodEnumDto, BillingTypeEnumDto, BranchPeriodTypeEnumDto, BranchPeriodsApiService, BranchPeriodsCreateBranchErrorComponentDtoAttrEnum, BranchPeriodsCreateBranchErrorComponentDtoCodeEnum, BranchPeriodsCreateDescriptionErrorComponentDtoAttrEnum, BranchPeriodsCreateDescriptionErrorComponentDtoCodeEnum, BranchPeriodsCreateNonFieldErrorsErrorComponentDtoAttrEnum, BranchPeriodsCreateNonFieldErrorsErrorComponentDtoCodeEnum, BranchPeriodsCreatePeriodEndErrorComponentDtoAttrEnum, BranchPeriodsCreatePeriodEndErrorComponentDtoCodeEnum, BranchPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoAttrEnum, BranchPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoCodeEnum, BranchPeriodsCreatePeriodStartErrorComponentDtoAttrEnum, BranchPeriodsCreatePeriodStartErrorComponentDtoCodeEnum, BranchPeriodsCreateTitleErrorComponentDtoAttrEnum, BranchPeriodsCreateTitleErrorComponentDtoCodeEnum, BranchPeriodsCreateTypeErrorComponentDtoAttrEnum, BranchPeriodsCreateTypeErrorComponentDtoCodeEnum, BranchPeriodsUpdateBranchErrorComponentDtoAttrEnum, BranchPeriodsUpdateBranchErrorComponentDtoCodeEnum, BranchPeriodsUpdateDescriptionErrorComponentDtoAttrEnum, BranchPeriodsUpdateDescriptionErrorComponentDtoCodeEnum, BranchPeriodsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, BranchPeriodsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, BranchPeriodsUpdatePeriodEndErrorComponentDtoAttrEnum, BranchPeriodsUpdatePeriodEndErrorComponentDtoCodeEnum, BranchPeriodsUpdatePeriodNonFieldErrorsErrorComponentDtoAttrEnum, BranchPeriodsUpdatePeriodNonFieldErrorsErrorComponentDtoCodeEnum, BranchPeriodsUpdatePeriodStartErrorComponentDtoAttrEnum, BranchPeriodsUpdatePeriodStartErrorComponentDtoCodeEnum, BranchPeriodsUpdateTitleErrorComponentDtoAttrEnum, BranchPeriodsUpdateTitleErrorComponentDtoCodeEnum, BranchPeriodsUpdateTypeErrorComponentDtoAttrEnum, BranchPeriodsUpdateTypeErrorComponentDtoCodeEnum, BranchesApiService, BranchesChangeActiveStatusCreateIsActiveErrorComponentDtoAttrEnum, BranchesChangeActiveStatusCreateIsActiveErrorComponentDtoCodeEnum, BranchesChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum, BranchesChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum, BranchesCreateAddress1ErrorComponentDtoAttrEnum, BranchesCreateAddress1ErrorComponentDtoCodeEnum, BranchesCreateAddress2ErrorComponentDtoAttrEnum, BranchesCreateAddress2ErrorComponentDtoCodeEnum, BranchesCreateCeoErrorComponentDtoAttrEnum, BranchesCreateCeoErrorComponentDtoCodeEnum, BranchesCreateCodeErrorComponentDtoAttrEnum, BranchesCreateCodeErrorComponentDtoCodeEnum, BranchesCreateCountryErrorComponentDtoAttrEnum, BranchesCreateCountryErrorComponentDtoCodeEnum, BranchesCreateHrEmailErrorComponentDtoAttrEnum, BranchesCreateHrEmailErrorComponentDtoCodeEnum, BranchesCreateIconErrorComponentDtoAttrEnum, BranchesCreateIconErrorComponentDtoCodeEnum, BranchesCreateIsOverseaErrorComponentDtoAttrEnum, BranchesCreateIsOverseaErrorComponentDtoCodeEnum, BranchesCreateIsVacationFileRequiredErrorComponentDtoAttrEnum, BranchesCreateIsVacationFileRequiredErrorComponentDtoCodeEnum, BranchesCreateNameErrorComponentDtoAttrEnum, BranchesCreateNameErrorComponentDtoCodeEnum, BranchesCreateNonFieldErrorsErrorComponentDtoAttrEnum, BranchesCreateNonFieldErrorsErrorComponentDtoCodeEnum, BranchesCreatePostalCodeErrorComponentDtoAttrEnum, BranchesCreatePostalCodeErrorComponentDtoCodeEnum, BranchesCreateStateErrorComponentDtoAttrEnum, BranchesCreateStateErrorComponentDtoCodeEnum, BranchesCreateTimezoneErrorComponentDtoAttrEnum, BranchesCreateTimezoneErrorComponentDtoCodeEnum, BranchesCreateVacationDaysCountErrorComponentDtoAttrEnum, BranchesCreateVacationDaysCountErrorComponentDtoCodeEnum, BranchesCreateVacationPeriodErrorComponentDtoAttrEnum, BranchesCreateVacationPeriodErrorComponentDtoCodeEnum, BranchesListIdErrorComponentDtoAttrEnum, BranchesListIdErrorComponentDtoCodeEnum, BranchesListIdInErrorComponentDtoAttrEnum, BranchesListIdInErrorComponentDtoCodeEnum, BranchesUpdateAddress1ErrorComponentDtoAttrEnum, BranchesUpdateAddress1ErrorComponentDtoCodeEnum, BranchesUpdateAddress2ErrorComponentDtoAttrEnum, BranchesUpdateAddress2ErrorComponentDtoCodeEnum, BranchesUpdateCeoErrorComponentDtoAttrEnum, BranchesUpdateCeoErrorComponentDtoCodeEnum, BranchesUpdateCodeErrorComponentDtoAttrEnum, BranchesUpdateCodeErrorComponentDtoCodeEnum, BranchesUpdateCountryErrorComponentDtoAttrEnum, BranchesUpdateCountryErrorComponentDtoCodeEnum, BranchesUpdateHrEmailErrorComponentDtoAttrEnum, BranchesUpdateHrEmailErrorComponentDtoCodeEnum, BranchesUpdateIconErrorComponentDtoAttrEnum, BranchesUpdateIconErrorComponentDtoCodeEnum, BranchesUpdateIsOverseaErrorComponentDtoAttrEnum, BranchesUpdateIsOverseaErrorComponentDtoCodeEnum, BranchesUpdateIsVacationFileRequiredErrorComponentDtoAttrEnum, BranchesUpdateIsVacationFileRequiredErrorComponentDtoCodeEnum, BranchesUpdateNameErrorComponentDtoAttrEnum, BranchesUpdateNameErrorComponentDtoCodeEnum, BranchesUpdateNonFieldErrorsErrorComponentDtoAttrEnum, BranchesUpdateNonFieldErrorsErrorComponentDtoCodeEnum, BranchesUpdatePostalCodeErrorComponentDtoAttrEnum, BranchesUpdatePostalCodeErrorComponentDtoCodeEnum, BranchesUpdateStateErrorComponentDtoAttrEnum, BranchesUpdateStateErrorComponentDtoCodeEnum, BranchesUpdateTimezoneErrorComponentDtoAttrEnum, BranchesUpdateTimezoneErrorComponentDtoCodeEnum, BranchesUpdateVacationDaysCountErrorComponentDtoAttrEnum, BranchesUpdateVacationDaysCountErrorComponentDtoCodeEnum, BranchesUpdateVacationPeriodErrorComponentDtoAttrEnum, BranchesUpdateVacationPeriodErrorComponentDtoCodeEnum, BranchesUsersStatsListIdErrorComponentDtoAttrEnum, BranchesUsersStatsListIdErrorComponentDtoCodeEnum, BranchesUsersStatsListIdInErrorComponentDtoAttrEnum, BranchesUsersStatsListIdInErrorComponentDtoCodeEnum, BranchesUsersStatsListUsersSearchErrorComponentDtoAttrEnum, BranchesUsersStatsListUsersSearchErrorComponentDtoCodeEnum, COLLECTION_FORMATS, ClientErrorEnumDto, ClientNotesApiService, ClientNotesListClientErrorComponentDtoAttrEnum, ClientNotesListClientErrorComponentDtoCodeEnum, ClientNotesListClientInErrorComponentDtoAttrEnum, ClientNotesListClientInErrorComponentDtoCodeEnum, ClientNotesListIdErrorComponentDtoAttrEnum, ClientNotesListIdErrorComponentDtoCodeEnum, ClientNotesListIdInErrorComponentDtoAttrEnum, ClientNotesListIdInErrorComponentDtoCodeEnum, ClientStatusEnumDto, ClientsApiService, ClientsListAccountManagerErrorComponentDtoAttrEnum, ClientsListAccountManagerErrorComponentDtoCodeEnum, ClientsListAccountManagerInErrorComponentDtoAttrEnum, ClientsListAccountManagerInErrorComponentDtoCodeEnum, ClientsListAddress1ErrorComponentDtoAttrEnum, ClientsListAddress1ErrorComponentDtoCodeEnum, ClientsListAddress1InErrorComponentDtoAttrEnum, ClientsListAddress1InErrorComponentDtoCodeEnum, ClientsListAddress2ErrorComponentDtoAttrEnum, ClientsListAddress2ErrorComponentDtoCodeEnum, ClientsListAddress2InErrorComponentDtoAttrEnum, ClientsListAddress2InErrorComponentDtoCodeEnum, ClientsListBillingAddress1ErrorComponentDtoAttrEnum, ClientsListBillingAddress1ErrorComponentDtoCodeEnum, ClientsListBillingAddress1InErrorComponentDtoAttrEnum, ClientsListBillingAddress1InErrorComponentDtoCodeEnum, ClientsListBillingAddress2ErrorComponentDtoAttrEnum, ClientsListBillingAddress2ErrorComponentDtoCodeEnum, ClientsListBillingAddress2InErrorComponentDtoAttrEnum, ClientsListBillingAddress2InErrorComponentDtoCodeEnum, ClientsListBillingCityErrorComponentDtoAttrEnum, ClientsListBillingCityErrorComponentDtoCodeEnum, ClientsListBillingCityInErrorComponentDtoAttrEnum, ClientsListBillingCityInErrorComponentDtoCodeEnum, ClientsListBillingCountryErrorComponentDtoAttrEnum, ClientsListBillingCountryErrorComponentDtoCodeEnum, ClientsListBillingCountryInErrorComponentDtoAttrEnum, ClientsListBillingCountryInErrorComponentDtoCodeEnum, ClientsListBillingMethodErrorComponentDtoAttrEnum, ClientsListBillingMethodErrorComponentDtoCodeEnum, ClientsListBillingMethodInErrorComponentDtoAttrEnum, ClientsListBillingMethodInErrorComponentDtoCodeEnum, ClientsListBillingNotesContainsErrorComponentDtoAttrEnum, ClientsListBillingNotesContainsErrorComponentDtoCodeEnum, ClientsListBillingNotesErrorComponentDtoAttrEnum, ClientsListBillingNotesErrorComponentDtoCodeEnum, ClientsListBillingNotesInErrorComponentDtoAttrEnum, ClientsListBillingNotesInErrorComponentDtoCodeEnum, ClientsListBillingStateErrorComponentDtoAttrEnum, ClientsListBillingStateErrorComponentDtoCodeEnum, ClientsListBillingStateInErrorComponentDtoAttrEnum, ClientsListBillingStateInErrorComponentDtoCodeEnum, ClientsListBillingZipErrorComponentDtoAttrEnum, ClientsListBillingZipErrorComponentDtoCodeEnum, ClientsListBillingZipInErrorComponentDtoAttrEnum, ClientsListBillingZipInErrorComponentDtoCodeEnum, ClientsListCityErrorComponentDtoAttrEnum, ClientsListCityErrorComponentDtoCodeEnum, ClientsListCityInErrorComponentDtoAttrEnum, ClientsListCityInErrorComponentDtoCodeEnum, ClientsListContractUntilGteErrorComponentDtoAttrEnum, ClientsListContractUntilGteErrorComponentDtoCodeEnum, ClientsListContractUntilLteErrorComponentDtoAttrEnum, ClientsListContractUntilLteErrorComponentDtoCodeEnum, ClientsListCountryErrorComponentDtoAttrEnum, ClientsListCountryErrorComponentDtoCodeEnum, ClientsListCountryInErrorComponentDtoAttrEnum, ClientsListCountryInErrorComponentDtoCodeEnum, ClientsListCreatedByErrorComponentDtoAttrEnum, ClientsListCreatedByErrorComponentDtoCodeEnum, ClientsListCreatedByInErrorComponentDtoAttrEnum, ClientsListCreatedByInErrorComponentDtoCodeEnum, ClientsListIdErrorComponentDtoAttrEnum, ClientsListIdErrorComponentDtoCodeEnum, ClientsListIdInErrorComponentDtoAttrEnum, ClientsListIdInErrorComponentDtoCodeEnum, ClientsListNotesContainsErrorComponentDtoAttrEnum, ClientsListNotesContainsErrorComponentDtoCodeEnum, ClientsListNotesErrorComponentDtoAttrEnum, ClientsListNotesErrorComponentDtoCodeEnum, ClientsListNotesInErrorComponentDtoAttrEnum, ClientsListNotesInErrorComponentDtoCodeEnum, ClientsListPaymentRecipientNameErrorComponentDtoAttrEnum, ClientsListPaymentRecipientNameErrorComponentDtoCodeEnum, ClientsListPaymentRecipientNameInErrorComponentDtoAttrEnum, ClientsListPaymentRecipientNameInErrorComponentDtoCodeEnum, ClientsListQbClientIdErrorComponentDtoAttrEnum, ClientsListQbClientIdErrorComponentDtoCodeEnum, ClientsListQbClientIdInErrorComponentDtoAttrEnum, ClientsListQbClientIdInErrorComponentDtoCodeEnum, ClientsListStateErrorComponentDtoAttrEnum, ClientsListStateErrorComponentDtoCodeEnum, ClientsListStateInErrorComponentDtoAttrEnum, ClientsListStateInErrorComponentDtoCodeEnum, ClientsListStatusErrorComponentDtoAttrEnum, ClientsListStatusErrorComponentDtoCodeEnum, ClientsListStatusInErrorComponentDtoAttrEnum, ClientsListStatusInErrorComponentDtoCodeEnum, ClientsListTimeLimitPerMonthGteErrorComponentDtoAttrEnum, ClientsListTimeLimitPerMonthGteErrorComponentDtoCodeEnum, ClientsListTimeLimitPerMonthLteErrorComponentDtoAttrEnum, ClientsListTimeLimitPerMonthLteErrorComponentDtoCodeEnum, ClientsListUpdatedByErrorComponentDtoAttrEnum, ClientsListUpdatedByErrorComponentDtoCodeEnum, ClientsListUpdatedByInErrorComponentDtoAttrEnum, ClientsListUpdatedByInErrorComponentDtoCodeEnum, ClientsListWebsiteErrorComponentDtoAttrEnum, ClientsListWebsiteErrorComponentDtoCodeEnum, ClientsListWebsiteInErrorComponentDtoAttrEnum, ClientsListWebsiteInErrorComponentDtoCodeEnum, ClientsListZipErrorComponentDtoAttrEnum, ClientsListZipErrorComponentDtoCodeEnum, ClientsListZipInErrorComponentDtoAttrEnum, ClientsListZipInErrorComponentDtoCodeEnum, ClientsListZohoAccountIdErrorComponentDtoAttrEnum, ClientsListZohoAccountIdErrorComponentDtoCodeEnum, ClientsListZohoAccountIdInErrorComponentDtoAttrEnum, ClientsListZohoAccountIdInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAccountManagerErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAccountManagerErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAccountManagerInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAccountManagerInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAddress1ErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAddress1ErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAddress1InErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAddress1InErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAddress2ErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAddress2ErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAddress2InErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAddress2InErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingAddress1ErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingAddress1ErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingAddress1InErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingAddress1InErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingAddress2ErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingAddress2ErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingAddress2InErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingAddress2InErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingCityErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingCityErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingCityInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingCityInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingCountryErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingCountryErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingCountryInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingCountryInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingMethodErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingMethodErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingMethodInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingMethodInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingNotesContainsErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingNotesContainsErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingNotesErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingNotesErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingNotesInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingNotesInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingStateErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingStateErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingStateInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingStateInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingZipErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingZipErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingZipInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingZipInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCityErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCityErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCityInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCityInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveContractUntilGteErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveContractUntilGteErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveContractUntilLteErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveContractUntilLteErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCountryErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCountryErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCountryInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCountryInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCreatedByErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCreatedByErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCreatedByInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCreatedByInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveIdErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveIdErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveIdInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveIdInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveNotesContainsErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveNotesContainsErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveNotesErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveNotesErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveNotesInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveNotesInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrievePaymentRecipientNameErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrievePaymentRecipientNameErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrievePaymentRecipientNameInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrievePaymentRecipientNameInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveQbClientIdErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveQbClientIdErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveQbClientIdInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveQbClientIdInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveStateErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveStateErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveStateInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveStateInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveStatusErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveStatusErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveStatusInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveStatusInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveTimeLimitPerMonthGteErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveTimeLimitPerMonthGteErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveTimeLimitPerMonthLteErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveTimeLimitPerMonthLteErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveUpdatedByErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveUpdatedByErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveUpdatedByInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveUpdatedByInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveWebsiteErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveWebsiteErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveWebsiteInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveWebsiteInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveZipErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveZipErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveZipInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveZipInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveZohoAccountIdErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveZohoAccountIdErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveZohoAccountIdInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveZohoAccountIdInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAccountManagerErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAccountManagerErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAccountManagerInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAccountManagerInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAddress1ErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAddress1ErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAddress1InErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAddress1InErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAddress2ErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAddress2ErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAddress2InErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAddress2InErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingAddress1ErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingAddress1ErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingAddress1InErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingAddress1InErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingAddress2ErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingAddress2ErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingAddress2InErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingAddress2InErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingCityErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingCityErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingCityInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingCityInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingCountryErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingCountryErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingCountryInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingCountryInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingMethodErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingMethodErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingMethodInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingMethodInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingNotesContainsErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingNotesContainsErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingNotesErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingNotesErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingNotesInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingNotesInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingStateErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingStateErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingStateInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingStateInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingZipErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingZipErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingZipInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingZipInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCityErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCityErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCityInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCityInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveContractUntilGteErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveContractUntilGteErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveContractUntilLteErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveContractUntilLteErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCountryErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCountryErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCountryInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCountryInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCreatedByErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCreatedByErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCreatedByInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCreatedByInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveIdErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveIdErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveIdInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveIdInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveNotesContainsErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveNotesContainsErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveNotesErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveNotesErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveNotesInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveNotesInErrorComponentDtoCodeEnum, ClientsWithStatsRetrievePaymentRecipientNameErrorComponentDtoAttrEnum, ClientsWithStatsRetrievePaymentRecipientNameErrorComponentDtoCodeEnum, ClientsWithStatsRetrievePaymentRecipientNameInErrorComponentDtoAttrEnum, ClientsWithStatsRetrievePaymentRecipientNameInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveQbClientIdErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveQbClientIdErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveQbClientIdInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveQbClientIdInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveStateErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveStateErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveStateInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveStateInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveStatusErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveStatusErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveStatusInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveStatusInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveTimeLimitPerMonthGteErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveTimeLimitPerMonthGteErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveTimeLimitPerMonthLteErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveTimeLimitPerMonthLteErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveUpdatedByErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveUpdatedByErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveUpdatedByInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveUpdatedByInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveWebsiteErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveWebsiteErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveWebsiteInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveWebsiteInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveZipErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveZipErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveZipInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveZipInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveZohoAccountIdErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveZohoAccountIdErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveZohoAccountIdInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveZohoAccountIdInErrorComponentDtoCodeEnum, ConfigEnumDto, Configuration, DepartmentsApiService, DepartmentsChangeActiveStatusCreateIsActiveErrorComponentDtoAttrEnum, DepartmentsChangeActiveStatusCreateIsActiveErrorComponentDtoCodeEnum, DepartmentsChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum, DepartmentsChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum, DepartmentsCreateColorErrorComponentDtoAttrEnum, DepartmentsCreateColorErrorComponentDtoCodeEnum, DepartmentsCreateNameErrorComponentDtoAttrEnum, DepartmentsCreateNameErrorComponentDtoCodeEnum, DepartmentsCreateNonFieldErrorsErrorComponentDtoAttrEnum, DepartmentsCreateNonFieldErrorsErrorComponentDtoCodeEnum, DepartmentsCreateWorkTypesErrorComponentDtoAttrEnum, DepartmentsCreateWorkTypesErrorComponentDtoCodeEnum, DepartmentsListIdErrorComponentDtoAttrEnum, DepartmentsListIdErrorComponentDtoCodeEnum, DepartmentsListIdInErrorComponentDtoAttrEnum, DepartmentsListIdInErrorComponentDtoCodeEnum, DepartmentsListNameErrorComponentDtoAttrEnum, DepartmentsListNameErrorComponentDtoCodeEnum, DepartmentsListNameInErrorComponentDtoAttrEnum, DepartmentsListNameInErrorComponentDtoCodeEnum, DepartmentsListWorkTypesIdInErrorComponentDtoAttrEnum, DepartmentsListWorkTypesIdInErrorComponentDtoCodeEnum, DepartmentsUpdateColorErrorComponentDtoAttrEnum, DepartmentsUpdateColorErrorComponentDtoCodeEnum, DepartmentsUpdateNameErrorComponentDtoAttrEnum, DepartmentsUpdateNameErrorComponentDtoCodeEnum, DepartmentsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, DepartmentsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, DepartmentsUpdateWorkTypesErrorComponentDtoAttrEnum, DepartmentsUpdateWorkTypesErrorComponentDtoCodeEnum, DismissalReasonsApiService, DismissalReasonsChangeActiveStatusCreateIsActiveErrorComponentDtoAttrEnum, DismissalReasonsChangeActiveStatusCreateIsActiveErrorComponentDtoCodeEnum, DismissalReasonsChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum, DismissalReasonsChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum, DismissalReasonsCreateIsActiveErrorComponentDtoAttrEnum, DismissalReasonsCreateIsActiveErrorComponentDtoCodeEnum, DismissalReasonsCreateNameErrorComponentDtoAttrEnum, DismissalReasonsCreateNameErrorComponentDtoCodeEnum, DismissalReasonsCreateNonFieldErrorsErrorComponentDtoAttrEnum, DismissalReasonsCreateNonFieldErrorsErrorComponentDtoCodeEnum, DismissalReasonsListIdErrorComponentDtoAttrEnum, DismissalReasonsListIdErrorComponentDtoCodeEnum, DismissalReasonsListIdInErrorComponentDtoAttrEnum, DismissalReasonsListIdInErrorComponentDtoCodeEnum, DismissalReasonsListNameErrorComponentDtoAttrEnum, DismissalReasonsListNameErrorComponentDtoCodeEnum, DismissalReasonsListNameInErrorComponentDtoAttrEnum, DismissalReasonsListNameInErrorComponentDtoCodeEnum, DismissalReasonsUpdateIsActiveErrorComponentDtoAttrEnum, DismissalReasonsUpdateIsActiveErrorComponentDtoCodeEnum, DismissalReasonsUpdateNameErrorComponentDtoAttrEnum, DismissalReasonsUpdateNameErrorComponentDtoCodeEnum, DismissalReasonsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, DismissalReasonsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, ErrorCode401EnumDto, ErrorCode403EnumDto, ErrorCode404EnumDto, ErrorCode405EnumDto, ErrorCode406EnumDto, ErrorCode415EnumDto, ErrorCode500EnumDto, ExportJobsApiService, ExportJobsStartCreateFileFormatErrorComponentDtoAttrEnum, ExportJobsStartCreateFileFormatErrorComponentDtoCodeEnum, ExportJobsStartCreateNonFieldErrorsErrorComponentDtoAttrEnum, ExportJobsStartCreateNonFieldErrorsErrorComponentDtoCodeEnum, ExportStatusEnumDto, ExportTasksApiService, ExportTasksStartCreateFileFormatErrorComponentDtoAttrEnum, ExportTasksStartCreateFileFormatErrorComponentDtoCodeEnum, ExportTasksStartCreateNonFieldErrorsErrorComponentDtoAttrEnum, ExportTasksStartCreateNonFieldErrorsErrorComponentDtoCodeEnum, ExportUsersApiService, ExportUsersStartCreateFileFormatErrorComponentDtoAttrEnum, ExportUsersStartCreateFileFormatErrorComponentDtoCodeEnum, ExportUsersStartCreateNonFieldErrorsErrorComponentDtoAttrEnum, ExportUsersStartCreateNonFieldErrorsErrorComponentDtoCodeEnum, FileFormatEnumDto, GroupEnumDto, JiraClientApiService, JiraClientCreateProjectCreateInstanceErrorComponentDtoAttrEnum, JiraClientCreateProjectCreateInstanceErrorComponentDtoCodeEnum, JiraClientCreateProjectCreateLeadErrorComponentDtoAttrEnum, JiraClientCreateProjectCreateLeadErrorComponentDtoCodeEnum, JiraClientCreateProjectCreateNonFieldErrorsErrorComponentDtoAttrEnum, JiraClientCreateProjectCreateNonFieldErrorsErrorComponentDtoCodeEnum, JiraClientCreateProjectCreateProjectNameErrorComponentDtoAttrEnum, JiraClientCreateProjectCreateProjectNameErrorComponentDtoCodeEnum, JiraInstancesApiService, JobTypeEnumDto, JobsApiService, JobsBillableChartListBilledByErrorComponentDtoAttrEnum, JobsBillableChartListBilledByErrorComponentDtoCodeEnum, JobsBillableChartListBilledByInErrorComponentDtoAttrEnum, JobsBillableChartListBilledByInErrorComponentDtoCodeEnum, JobsBillableChartListBranchErrorComponentDtoAttrEnum, JobsBillableChartListBranchErrorComponentDtoCodeEnum, JobsBillableChartListBranchInErrorComponentDtoAttrEnum, JobsBillableChartListBranchInErrorComponentDtoCodeEnum, JobsBillableChartListCreatedByErrorComponentDtoAttrEnum, JobsBillableChartListCreatedByErrorComponentDtoCodeEnum, JobsBillableChartListCreatedByInErrorComponentDtoAttrEnum, JobsBillableChartListCreatedByInErrorComponentDtoCodeEnum, JobsBillableChartListDateGteErrorComponentDtoAttrEnum, JobsBillableChartListDateGteErrorComponentDtoCodeEnum, JobsBillableChartListDateLteErrorComponentDtoAttrEnum, JobsBillableChartListDateLteErrorComponentDtoCodeEnum, JobsBillableChartListIdErrorComponentDtoAttrEnum, JobsBillableChartListIdErrorComponentDtoCodeEnum, JobsBillableChartListIdInErrorComponentDtoAttrEnum, JobsBillableChartListIdInErrorComponentDtoCodeEnum, JobsBillableChartListTaskErrorComponentDtoAttrEnum, JobsBillableChartListTaskErrorComponentDtoCodeEnum, JobsBillableChartListTaskInErrorComponentDtoAttrEnum, JobsBillableChartListTaskInErrorComponentDtoCodeEnum, JobsBillableChartListTaskProjectClientErrorComponentDtoAttrEnum, JobsBillableChartListTaskProjectClientErrorComponentDtoCodeEnum, JobsBillableChartListTaskProjectClientInErrorComponentDtoAttrEnum, JobsBillableChartListTaskProjectClientInErrorComponentDtoCodeEnum, JobsBillableChartListTaskProjectErrorComponentDtoAttrEnum, JobsBillableChartListTaskProjectErrorComponentDtoCodeEnum, JobsBillableChartListTaskProjectInErrorComponentDtoAttrEnum, JobsBillableChartListTaskProjectInErrorComponentDtoCodeEnum, JobsBillableChartListTimeSpanErrorComponentDtoAttrEnum, JobsBillableChartListTimeSpanErrorComponentDtoCodeEnum, JobsBillableChartListTypeErrorComponentDtoAttrEnum, JobsBillableChartListTypeErrorComponentDtoCodeEnum, JobsBillableChartListTypeInErrorComponentDtoAttrEnum, JobsBillableChartListTypeInErrorComponentDtoCodeEnum, JobsBillableChartListUpdatedByErrorComponentDtoAttrEnum, JobsBillableChartListUpdatedByErrorComponentDtoCodeEnum, JobsBillableChartListUpdatedByInErrorComponentDtoAttrEnum, JobsBillableChartListUpdatedByInErrorComponentDtoCodeEnum, JobsBillableChartListWorkTypeErrorComponentDtoAttrEnum, JobsBillableChartListWorkTypeErrorComponentDtoCodeEnum, JobsBillableChartListWorkTypeInErrorComponentDtoAttrEnum, JobsBillableChartListWorkTypeInErrorComponentDtoCodeEnum, JobsListBilledByErrorComponentDtoAttrEnum, JobsListBilledByErrorComponentDtoCodeEnum, JobsListBilledByInErrorComponentDtoAttrEnum, JobsListBilledByInErrorComponentDtoCodeEnum, JobsListBranchErrorComponentDtoAttrEnum, JobsListBranchErrorComponentDtoCodeEnum, JobsListBranchInErrorComponentDtoAttrEnum, JobsListBranchInErrorComponentDtoCodeEnum, JobsListCreatedByErrorComponentDtoAttrEnum, JobsListCreatedByErrorComponentDtoCodeEnum, JobsListCreatedByInErrorComponentDtoAttrEnum, JobsListCreatedByInErrorComponentDtoCodeEnum, JobsListDateGteErrorComponentDtoAttrEnum, JobsListDateGteErrorComponentDtoCodeEnum, JobsListDateLteErrorComponentDtoAttrEnum, JobsListDateLteErrorComponentDtoCodeEnum, JobsListIdErrorComponentDtoAttrEnum, JobsListIdErrorComponentDtoCodeEnum, JobsListIdInErrorComponentDtoAttrEnum, JobsListIdInErrorComponentDtoCodeEnum, JobsListTaskErrorComponentDtoAttrEnum, JobsListTaskErrorComponentDtoCodeEnum, JobsListTaskInErrorComponentDtoAttrEnum, JobsListTaskInErrorComponentDtoCodeEnum, JobsListTaskProjectClientErrorComponentDtoAttrEnum, JobsListTaskProjectClientErrorComponentDtoCodeEnum, JobsListTaskProjectClientInErrorComponentDtoAttrEnum, JobsListTaskProjectClientInErrorComponentDtoCodeEnum, JobsListTaskProjectErrorComponentDtoAttrEnum, JobsListTaskProjectErrorComponentDtoCodeEnum, JobsListTaskProjectInErrorComponentDtoAttrEnum, JobsListTaskProjectInErrorComponentDtoCodeEnum, JobsListTypeErrorComponentDtoAttrEnum, JobsListTypeErrorComponentDtoCodeEnum, JobsListTypeInErrorComponentDtoAttrEnum, JobsListTypeInErrorComponentDtoCodeEnum, JobsListUpdatedByErrorComponentDtoAttrEnum, JobsListUpdatedByErrorComponentDtoCodeEnum, JobsListUpdatedByInErrorComponentDtoAttrEnum, JobsListUpdatedByInErrorComponentDtoCodeEnum, JobsListWorkTypeErrorComponentDtoAttrEnum, JobsListWorkTypeErrorComponentDtoCodeEnum, JobsListWorkTypeInErrorComponentDtoAttrEnum, JobsListWorkTypeInErrorComponentDtoCodeEnum, JobsProductionChartListBilledByErrorComponentDtoAttrEnum, JobsProductionChartListBilledByErrorComponentDtoCodeEnum, JobsProductionChartListBilledByInErrorComponentDtoAttrEnum, JobsProductionChartListBilledByInErrorComponentDtoCodeEnum, JobsProductionChartListBranchErrorComponentDtoAttrEnum, JobsProductionChartListBranchErrorComponentDtoCodeEnum, JobsProductionChartListBranchInErrorComponentDtoAttrEnum, JobsProductionChartListBranchInErrorComponentDtoCodeEnum, JobsProductionChartListCreatedByErrorComponentDtoAttrEnum, JobsProductionChartListCreatedByErrorComponentDtoCodeEnum, JobsProductionChartListCreatedByInErrorComponentDtoAttrEnum, JobsProductionChartListCreatedByInErrorComponentDtoCodeEnum, JobsProductionChartListDateGteErrorComponentDtoAttrEnum, JobsProductionChartListDateGteErrorComponentDtoCodeEnum, JobsProductionChartListDateLteErrorComponentDtoAttrEnum, JobsProductionChartListDateLteErrorComponentDtoCodeEnum, JobsProductionChartListIdErrorComponentDtoAttrEnum, JobsProductionChartListIdErrorComponentDtoCodeEnum, JobsProductionChartListIdInErrorComponentDtoAttrEnum, JobsProductionChartListIdInErrorComponentDtoCodeEnum, JobsProductionChartListTaskErrorComponentDtoAttrEnum, JobsProductionChartListTaskErrorComponentDtoCodeEnum, JobsProductionChartListTaskInErrorComponentDtoAttrEnum, JobsProductionChartListTaskInErrorComponentDtoCodeEnum, JobsProductionChartListTaskProjectClientErrorComponentDtoAttrEnum, JobsProductionChartListTaskProjectClientErrorComponentDtoCodeEnum, JobsProductionChartListTaskProjectClientInErrorComponentDtoAttrEnum, JobsProductionChartListTaskProjectClientInErrorComponentDtoCodeEnum, JobsProductionChartListTaskProjectErrorComponentDtoAttrEnum, JobsProductionChartListTaskProjectErrorComponentDtoCodeEnum, JobsProductionChartListTaskProjectInErrorComponentDtoAttrEnum, JobsProductionChartListTaskProjectInErrorComponentDtoCodeEnum, JobsProductionChartListTimeSpanErrorComponentDtoAttrEnum, JobsProductionChartListTimeSpanErrorComponentDtoCodeEnum, JobsProductionChartListTypeErrorComponentDtoAttrEnum, JobsProductionChartListTypeErrorComponentDtoCodeEnum, JobsProductionChartListTypeInErrorComponentDtoAttrEnum, JobsProductionChartListTypeInErrorComponentDtoCodeEnum, JobsProductionChartListUpdatedByErrorComponentDtoAttrEnum, JobsProductionChartListUpdatedByErrorComponentDtoCodeEnum, JobsProductionChartListUpdatedByInErrorComponentDtoAttrEnum, JobsProductionChartListUpdatedByInErrorComponentDtoCodeEnum, JobsProductionChartListWorkTypeErrorComponentDtoAttrEnum, JobsProductionChartListWorkTypeErrorComponentDtoCodeEnum, JobsProductionChartListWorkTypeInErrorComponentDtoAttrEnum, JobsProductionChartListWorkTypeInErrorComponentDtoCodeEnum, LocationsApiService, LocationsCreateIconErrorComponentDtoAttrEnum, LocationsCreateIconErrorComponentDtoCodeEnum, LocationsCreateNameErrorComponentDtoAttrEnum, LocationsCreateNameErrorComponentDtoCodeEnum, LocationsCreateNonFieldErrorsErrorComponentDtoAttrEnum, LocationsCreateNonFieldErrorsErrorComponentDtoCodeEnum, LocationsCreateTimezoneErrorComponentDtoAttrEnum, LocationsCreateTimezoneErrorComponentDtoCodeEnum, LocationsListIdErrorComponentDtoAttrEnum, LocationsListIdErrorComponentDtoCodeEnum, LocationsListIdInErrorComponentDtoAttrEnum, LocationsListIdInErrorComponentDtoCodeEnum, LocationsListNameErrorComponentDtoAttrEnum, LocationsListNameErrorComponentDtoCodeEnum, LocationsListNameInErrorComponentDtoAttrEnum, LocationsListNameInErrorComponentDtoCodeEnum, LocationsListTimezoneErrorComponentDtoAttrEnum, LocationsListTimezoneErrorComponentDtoCodeEnum, LocationsListTimezoneInErrorComponentDtoAttrEnum, LocationsListTimezoneInErrorComponentDtoCodeEnum, LocationsUpdateIconErrorComponentDtoAttrEnum, LocationsUpdateIconErrorComponentDtoCodeEnum, LocationsUpdateNameErrorComponentDtoAttrEnum, LocationsUpdateNameErrorComponentDtoCodeEnum, LocationsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, LocationsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, LocationsUpdateTimezoneErrorComponentDtoAttrEnum, LocationsUpdateTimezoneErrorComponentDtoCodeEnum, NotificationTypeEnumDto, NotificationsApiService, NotificationsListCreatedGtErrorComponentDtoAttrEnum, NotificationsListCreatedGtErrorComponentDtoCodeEnum, NotificationsListCreatedGteErrorComponentDtoAttrEnum, NotificationsListCreatedGteErrorComponentDtoCodeEnum, NotificationsListCreatedLtErrorComponentDtoAttrEnum, NotificationsListCreatedLtErrorComponentDtoCodeEnum, NotificationsListCreatedLteErrorComponentDtoAttrEnum, NotificationsListCreatedLteErrorComponentDtoCodeEnum, NotificationsListIdErrorComponentDtoAttrEnum, NotificationsListIdErrorComponentDtoCodeEnum, NotificationsListIdGtErrorComponentDtoAttrEnum, NotificationsListIdGtErrorComponentDtoCodeEnum, NotificationsListIdGteErrorComponentDtoAttrEnum, NotificationsListIdGteErrorComponentDtoCodeEnum, NotificationsListIdInErrorComponentDtoAttrEnum, NotificationsListIdInErrorComponentDtoCodeEnum, NotificationsListIdLtErrorComponentDtoAttrEnum, NotificationsListIdLtErrorComponentDtoCodeEnum, NotificationsListIdLteErrorComponentDtoAttrEnum, NotificationsListIdLteErrorComponentDtoCodeEnum, NotificationsListTypeErrorComponentDtoAttrEnum, NotificationsListTypeErrorComponentDtoCodeEnum, NotificationsListTypeInErrorComponentDtoAttrEnum, NotificationsListTypeInErrorComponentDtoCodeEnum, ParseErrorCodeEnumDto, PeriodModelEnumDto, PeriodTypeEnumDto, PermissionDataApiService, PermissionEnumDto, PriorityEnumDto, ProfileApiService, ProfileUpdateAvatarErrorComponentDtoAttrEnum, ProfileUpdateAvatarErrorComponentDtoCodeEnum, ProfileUpdateBirthdayErrorComponentDtoAttrEnum, ProfileUpdateBirthdayErrorComponentDtoCodeEnum, ProfileUpdateCreatedByErrorComponentDtoAttrEnum, ProfileUpdateCreatedByErrorComponentDtoCodeEnum, ProfileUpdateFirstNameErrorComponentDtoAttrEnum, ProfileUpdateFirstNameErrorComponentDtoCodeEnum, ProfileUpdateGithubUsernameErrorComponentDtoAttrEnum, ProfileUpdateGithubUsernameErrorComponentDtoCodeEnum, ProfileUpdateHomePhoneErrorComponentDtoAttrEnum, ProfileUpdateHomePhoneErrorComponentDtoCodeEnum, ProfileUpdateLastNameErrorComponentDtoAttrEnum, ProfileUpdateLastNameErrorComponentDtoCodeEnum, ProfileUpdateLocationErrorComponentDtoAttrEnum, ProfileUpdateLocationErrorComponentDtoCodeEnum, ProfileUpdateMiddleNameErrorComponentDtoAttrEnum, ProfileUpdateMiddleNameErrorComponentDtoCodeEnum, ProfileUpdateNonFieldErrorsErrorComponentDtoAttrEnum, ProfileUpdateNonFieldErrorsErrorComponentDtoCodeEnum, ProfileUpdateOfficePhoneErrorComponentDtoAttrEnum, ProfileUpdateOfficePhoneErrorComponentDtoCodeEnum, ProfileUpdatePersonalEmailErrorComponentDtoAttrEnum, ProfileUpdatePersonalEmailErrorComponentDtoCodeEnum, ProfileUpdatePersonalPhoneErrorComponentDtoAttrEnum, ProfileUpdatePersonalPhoneErrorComponentDtoCodeEnum, ProfileUpdateSkypeErrorComponentDtoAttrEnum, ProfileUpdateSkypeErrorComponentDtoCodeEnum, ProfileUpdateSlackIdErrorComponentDtoAttrEnum, ProfileUpdateSlackIdErrorComponentDtoCodeEnum, ProfileUpdateTimezoneErrorComponentDtoAttrEnum, ProfileUpdateTimezoneErrorComponentDtoCodeEnum, ProfileUpdateUpdatedByErrorComponentDtoAttrEnum, ProfileUpdateUpdatedByErrorComponentDtoCodeEnum, ProjectNotesApiService, ProjectNotesListIdErrorComponentDtoAttrEnum, ProjectNotesListIdErrorComponentDtoCodeEnum, ProjectNotesListIdInErrorComponentDtoAttrEnum, ProjectNotesListIdInErrorComponentDtoCodeEnum, ProjectNotesListProjectErrorComponentDtoAttrEnum, ProjectNotesListProjectErrorComponentDtoCodeEnum, ProjectNotesListProjectInErrorComponentDtoAttrEnum, ProjectNotesListProjectInErrorComponentDtoCodeEnum, ProjectPrioritiesApiService, ProjectPrioritiesListColorErrorComponentDtoAttrEnum, ProjectPrioritiesListColorErrorComponentDtoCodeEnum, ProjectPrioritiesListColorInErrorComponentDtoAttrEnum, ProjectPrioritiesListColorInErrorComponentDtoCodeEnum, ProjectPrioritiesListIdErrorComponentDtoAttrEnum, ProjectPrioritiesListIdErrorComponentDtoCodeEnum, ProjectPrioritiesListIdInErrorComponentDtoAttrEnum, ProjectPrioritiesListIdInErrorComponentDtoCodeEnum, ProjectPrioritiesListNameErrorComponentDtoAttrEnum, ProjectPrioritiesListNameErrorComponentDtoCodeEnum, ProjectPrioritiesListNameInErrorComponentDtoAttrEnum, ProjectPrioritiesListNameInErrorComponentDtoCodeEnum, ProjectStatusEnumDto, ProjectsApiService, ProjectsListClientContactErrorComponentDtoAttrEnum, ProjectsListClientContactErrorComponentDtoCodeEnum, ProjectsListClientContactInErrorComponentDtoAttrEnum, ProjectsListClientContactInErrorComponentDtoCodeEnum, ProjectsListClientErrorComponentDtoAttrEnum, ProjectsListClientErrorComponentDtoCodeEnum, ProjectsListClientInErrorComponentDtoAttrEnum, ProjectsListClientInErrorComponentDtoCodeEnum, ProjectsListIdErrorComponentDtoAttrEnum, ProjectsListIdErrorComponentDtoCodeEnum, ProjectsListIdInErrorComponentDtoAttrEnum, ProjectsListIdInErrorComponentDtoCodeEnum, ProjectsListProjectManagersIdInErrorComponentDtoAttrEnum, ProjectsListProjectManagersIdInErrorComponentDtoCodeEnum, ProjectsListStatusErrorComponentDtoAttrEnum, ProjectsListStatusErrorComponentDtoCodeEnum, ProjectsListStatusInErrorComponentDtoAttrEnum, ProjectsListStatusInErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListClientContactErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListClientContactErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListClientContactInErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListClientContactInErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListClientErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListClientErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListClientInErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListClientInErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListIdErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListIdErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListIdInErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListIdInErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListProjectManagersIdInErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListProjectManagersIdInErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListStatusErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListStatusErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListStatusInErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListStatusInErrorComponentDtoCodeEnum, ProjectsWithStatsListClientContactErrorComponentDtoAttrEnum, ProjectsWithStatsListClientContactErrorComponentDtoCodeEnum, ProjectsWithStatsListClientContactInErrorComponentDtoAttrEnum, ProjectsWithStatsListClientContactInErrorComponentDtoCodeEnum, ProjectsWithStatsListClientErrorComponentDtoAttrEnum, ProjectsWithStatsListClientErrorComponentDtoCodeEnum, ProjectsWithStatsListClientInErrorComponentDtoAttrEnum, ProjectsWithStatsListClientInErrorComponentDtoCodeEnum, ProjectsWithStatsListIdErrorComponentDtoAttrEnum, ProjectsWithStatsListIdErrorComponentDtoCodeEnum, ProjectsWithStatsListIdInErrorComponentDtoAttrEnum, ProjectsWithStatsListIdInErrorComponentDtoCodeEnum, ProjectsWithStatsListProjectManagersIdInErrorComponentDtoAttrEnum, ProjectsWithStatsListProjectManagersIdInErrorComponentDtoCodeEnum, ProjectsWithStatsListStatusErrorComponentDtoAttrEnum, ProjectsWithStatsListStatusErrorComponentDtoCodeEnum, ProjectsWithStatsListStatusInErrorComponentDtoAttrEnum, ProjectsWithStatsListStatusInErrorComponentDtoCodeEnum, RolesApiService, RolesCreateNameErrorComponentDtoAttrEnum, RolesCreateNameErrorComponentDtoCodeEnum, RolesCreateNonFieldErrorsErrorComponentDtoAttrEnum, RolesCreateNonFieldErrorsErrorComponentDtoCodeEnum, RolesCreatePermissionsINDEXNonFieldErrorsErrorComponentDtoAttrEnum, RolesCreatePermissionsINDEXNonFieldErrorsErrorComponentDtoCodeEnum, RolesCreatePermissionsINDEXPermissionErrorComponentDtoAttrEnum, RolesCreatePermissionsINDEXPermissionErrorComponentDtoCodeEnum, RolesCreatePermissionsINDEXScopeErrorComponentDtoAttrEnum, RolesCreatePermissionsINDEXScopeErrorComponentDtoCodeEnum, RolesCreatePermissionsNonFieldErrorsErrorComponentDtoAttrEnum, RolesCreatePermissionsNonFieldErrorsErrorComponentDtoCodeEnum, RolesListIdErrorComponentDtoAttrEnum, RolesListIdErrorComponentDtoCodeEnum, RolesListIdInErrorComponentDtoAttrEnum, RolesListIdInErrorComponentDtoCodeEnum, RolesListPermissionsPermissionErrorComponentDtoAttrEnum, RolesListPermissionsPermissionErrorComponentDtoCodeEnum, RolesListPermissionsPermissionInErrorComponentDtoAttrEnum, RolesListPermissionsPermissionInErrorComponentDtoCodeEnum, RolesListPermissionsScopeErrorComponentDtoAttrEnum, RolesListPermissionsScopeErrorComponentDtoCodeEnum, RolesListPermissionsScopeInErrorComponentDtoAttrEnum, RolesListPermissionsScopeInErrorComponentDtoCodeEnum, RolesUpdateNameErrorComponentDtoAttrEnum, RolesUpdateNameErrorComponentDtoCodeEnum, RolesUpdateNonFieldErrorsErrorComponentDtoAttrEnum, RolesUpdateNonFieldErrorsErrorComponentDtoCodeEnum, RolesUpdatePermissionsINDEXNonFieldErrorsErrorComponentDtoAttrEnum, RolesUpdatePermissionsINDEXNonFieldErrorsErrorComponentDtoCodeEnum, RolesUpdatePermissionsINDEXPermissionErrorComponentDtoAttrEnum, RolesUpdatePermissionsINDEXPermissionErrorComponentDtoCodeEnum, RolesUpdatePermissionsINDEXScopeErrorComponentDtoAttrEnum, RolesUpdatePermissionsINDEXScopeErrorComponentDtoCodeEnum, RolesUpdatePermissionsNonFieldErrorsErrorComponentDtoAttrEnum, RolesUpdatePermissionsNonFieldErrorsErrorComponentDtoCodeEnum, S3ApiService, S3GetParamsCreateConfigErrorComponentDtoAttrEnum, S3GetParamsCreateConfigErrorComponentDtoCodeEnum, S3GetParamsCreateContentLengthErrorComponentDtoAttrEnum, S3GetParamsCreateContentLengthErrorComponentDtoCodeEnum, S3GetParamsCreateContentTypeErrorComponentDtoAttrEnum, S3GetParamsCreateContentTypeErrorComponentDtoCodeEnum, S3GetParamsCreateFilenameErrorComponentDtoAttrEnum, S3GetParamsCreateFilenameErrorComponentDtoCodeEnum, S3GetParamsCreateNonFieldErrorsErrorComponentDtoAttrEnum, S3GetParamsCreateNonFieldErrorsErrorComponentDtoCodeEnum, ScopeEnumDto, SearchPeriodsApiService, SearchPeriodsListBranchInErrorComponentDtoAttrEnum, SearchPeriodsListBranchInErrorComponentDtoCodeEnum, SearchPeriodsListPeriodOverlapErrorComponentDtoAttrEnum, SearchPeriodsListPeriodOverlapErrorComponentDtoCodeEnum, SearchPeriodsListStatusInErrorComponentDtoAttrEnum, SearchPeriodsListStatusInErrorComponentDtoCodeEnum, SearchPeriodsListTypeInErrorComponentDtoAttrEnum, SearchPeriodsListTypeInErrorComponentDtoCodeEnum, SearchPeriodsListUserBranchInErrorComponentDtoAttrEnum, SearchPeriodsListUserBranchInErrorComponentDtoCodeEnum, SearchPeriodsListUserDepartmentInErrorComponentDtoAttrEnum, SearchPeriodsListUserDepartmentInErrorComponentDtoCodeEnum, SearchPeriodsListUserInErrorComponentDtoAttrEnum, SearchPeriodsListUserInErrorComponentDtoCodeEnum, SearchPeriodsListUserStatusInErrorComponentDtoAttrEnum, SearchPeriodsListUserStatusInErrorComponentDtoCodeEnum, SearchPeriodsListUserSuperviseesInErrorComponentDtoAttrEnum, SearchPeriodsListUserSuperviseesInErrorComponentDtoCodeEnum, SearchPeriodsListUserSupervisorsInErrorComponentDtoAttrEnum, SearchPeriodsListUserSupervisorsInErrorComponentDtoCodeEnum, SearchPeriodsListUserWorkTypeInErrorComponentDtoAttrEnum, SearchPeriodsListUserWorkTypeInErrorComponentDtoCodeEnum, ServerErrorEnumDto, SsoApiService, SsoCodeExchangeCreateCodeErrorComponentDtoAttrEnum, SsoCodeExchangeCreateCodeErrorComponentDtoCodeEnum, SsoCodeExchangeCreateNonFieldErrorsErrorComponentDtoAttrEnum, SsoCodeExchangeCreateNonFieldErrorsErrorComponentDtoCodeEnum, SsoCodeExchangeCreateRedirectUriErrorComponentDtoAttrEnum, SsoCodeExchangeCreateRedirectUriErrorComponentDtoCodeEnum, SsoDebugCreateEmailErrorComponentDtoAttrEnum, SsoDebugCreateEmailErrorComponentDtoCodeEnum, SsoDebugCreateNonFieldErrorsErrorComponentDtoAttrEnum, SsoDebugCreateNonFieldErrorsErrorComponentDtoCodeEnum, SsoStartCreateNonFieldErrorsErrorComponentDtoAttrEnum, SsoStartCreateNonFieldErrorsErrorComponentDtoCodeEnum, SsoStartCreateRedirectUriErrorComponentDtoAttrEnum, SsoStartCreateRedirectUriErrorComponentDtoCodeEnum, StateEnumDto, TasksApiService, TasksListAssigneeErrorComponentDtoAttrEnum, TasksListAssigneeErrorComponentDtoCodeEnum, TasksListAssigneeInErrorComponentDtoAttrEnum, TasksListAssigneeInErrorComponentDtoCodeEnum, TasksListComponentErrorComponentDtoAttrEnum, TasksListComponentErrorComponentDtoCodeEnum, TasksListComponentInErrorComponentDtoAttrEnum, TasksListComponentInErrorComponentDtoCodeEnum, TasksListCreatedByErrorComponentDtoAttrEnum, TasksListCreatedByErrorComponentDtoCodeEnum, TasksListCreatedByInErrorComponentDtoAttrEnum, TasksListCreatedByInErrorComponentDtoCodeEnum, TasksListIdErrorComponentDtoAttrEnum, TasksListIdErrorComponentDtoCodeEnum, TasksListIdInErrorComponentDtoAttrEnum, TasksListIdInErrorComponentDtoCodeEnum, TasksListPriorityErrorComponentDtoAttrEnum, TasksListPriorityErrorComponentDtoCodeEnum, TasksListPriorityInErrorComponentDtoAttrEnum, TasksListPriorityInErrorComponentDtoCodeEnum, TasksListProjectClientErrorComponentDtoAttrEnum, TasksListProjectClientErrorComponentDtoCodeEnum, TasksListProjectClientInErrorComponentDtoAttrEnum, TasksListProjectClientInErrorComponentDtoCodeEnum, TasksListProjectErrorComponentDtoAttrEnum, TasksListProjectErrorComponentDtoCodeEnum, TasksListProjectInErrorComponentDtoAttrEnum, TasksListProjectInErrorComponentDtoCodeEnum, TasksListSprintErrorComponentDtoAttrEnum, TasksListSprintErrorComponentDtoCodeEnum, TasksListSprintInErrorComponentDtoAttrEnum, TasksListSprintInErrorComponentDtoCodeEnum, TasksListStatusErrorComponentDtoAttrEnum, TasksListStatusErrorComponentDtoCodeEnum, TasksListStatusInErrorComponentDtoAttrEnum, TasksListStatusInErrorComponentDtoCodeEnum, TasksListUpdatedByErrorComponentDtoAttrEnum, TasksListUpdatedByErrorComponentDtoCodeEnum, TasksListUpdatedByInErrorComponentDtoAttrEnum, TasksListUpdatedByInErrorComponentDtoCodeEnum, TasksStatusesRetrieveAssigneeErrorComponentDtoAttrEnum, TasksStatusesRetrieveAssigneeErrorComponentDtoCodeEnum, TasksStatusesRetrieveAssigneeInErrorComponentDtoAttrEnum, TasksStatusesRetrieveAssigneeInErrorComponentDtoCodeEnum, TasksStatusesRetrieveComponentErrorComponentDtoAttrEnum, TasksStatusesRetrieveComponentErrorComponentDtoCodeEnum, TasksStatusesRetrieveComponentInErrorComponentDtoAttrEnum, TasksStatusesRetrieveComponentInErrorComponentDtoCodeEnum, TasksStatusesRetrieveCreatedByErrorComponentDtoAttrEnum, TasksStatusesRetrieveCreatedByErrorComponentDtoCodeEnum, TasksStatusesRetrieveCreatedByInErrorComponentDtoAttrEnum, TasksStatusesRetrieveCreatedByInErrorComponentDtoCodeEnum, TasksStatusesRetrieveIdErrorComponentDtoAttrEnum, TasksStatusesRetrieveIdErrorComponentDtoCodeEnum, TasksStatusesRetrieveIdInErrorComponentDtoAttrEnum, TasksStatusesRetrieveIdInErrorComponentDtoCodeEnum, TasksStatusesRetrievePriorityErrorComponentDtoAttrEnum, TasksStatusesRetrievePriorityErrorComponentDtoCodeEnum, TasksStatusesRetrievePriorityInErrorComponentDtoAttrEnum, TasksStatusesRetrievePriorityInErrorComponentDtoCodeEnum, TasksStatusesRetrieveProjectClientErrorComponentDtoAttrEnum, TasksStatusesRetrieveProjectClientErrorComponentDtoCodeEnum, TasksStatusesRetrieveProjectClientInErrorComponentDtoAttrEnum, TasksStatusesRetrieveProjectClientInErrorComponentDtoCodeEnum, TasksStatusesRetrieveProjectErrorComponentDtoAttrEnum, TasksStatusesRetrieveProjectErrorComponentDtoCodeEnum, TasksStatusesRetrieveProjectInErrorComponentDtoAttrEnum, TasksStatusesRetrieveProjectInErrorComponentDtoCodeEnum, TasksStatusesRetrieveSprintErrorComponentDtoAttrEnum, TasksStatusesRetrieveSprintErrorComponentDtoCodeEnum, TasksStatusesRetrieveSprintInErrorComponentDtoAttrEnum, TasksStatusesRetrieveSprintInErrorComponentDtoCodeEnum, TasksStatusesRetrieveStatusErrorComponentDtoAttrEnum, TasksStatusesRetrieveStatusErrorComponentDtoCodeEnum, TasksStatusesRetrieveStatusInErrorComponentDtoAttrEnum, TasksStatusesRetrieveStatusInErrorComponentDtoCodeEnum, TasksStatusesRetrieveUpdatedByErrorComponentDtoAttrEnum, TasksStatusesRetrieveUpdatedByErrorComponentDtoCodeEnum, TasksStatusesRetrieveUpdatedByInErrorComponentDtoAttrEnum, TasksStatusesRetrieveUpdatedByInErrorComponentDtoCodeEnum, TokenApiService, TokenRefreshCreateNonFieldErrorsErrorComponentDtoAttrEnum, TokenRefreshCreateNonFieldErrorsErrorComponentDtoCodeEnum, TokenRefreshCreateRefreshErrorComponentDtoAttrEnum, TokenRefreshCreateRefreshErrorComponentDtoCodeEnum, TokenVerifyCreateNonFieldErrorsErrorComponentDtoAttrEnum, TokenVerifyCreateNonFieldErrorsErrorComponentDtoCodeEnum, TokenVerifyCreateTokenErrorComponentDtoAttrEnum, TokenVerifyCreateTokenErrorComponentDtoCodeEnum, UserCapacitiesApiService, UserCapacitiesCalculateCapacityCreateBranchErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateBranchErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateCapacityErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateCapacityErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateDateErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateDateErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateDepartmentErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateDepartmentErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateNonFieldErrorsErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateUserErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateUserErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateWorkTypeErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateWorkTypeErrorComponentDtoCodeEnum, UserCapacitiesGetPeriodCapacityListDateGteErrorComponentDtoAttrEnum, UserCapacitiesGetPeriodCapacityListDateGteErrorComponentDtoCodeEnum, UserCapacitiesGetPeriodCapacityListDateLteErrorComponentDtoAttrEnum, UserCapacitiesGetPeriodCapacityListDateLteErrorComponentDtoCodeEnum, UserCapacitiesGetPeriodCapacityListObjectIdsErrorComponentDtoAttrEnum, UserCapacitiesGetPeriodCapacityListObjectIdsErrorComponentDtoCodeEnum, UserCapacitiesGetPeriodCapacityListPeriodTypeErrorComponentDtoAttrEnum, UserCapacitiesGetPeriodCapacityListPeriodTypeErrorComponentDtoCodeEnum, UserCapacitiesListBranchIdErrorComponentDtoAttrEnum, UserCapacitiesListBranchIdErrorComponentDtoCodeEnum, UserCapacitiesListBranchIdInErrorComponentDtoAttrEnum, UserCapacitiesListBranchIdInErrorComponentDtoCodeEnum, UserCapacitiesListDateGteErrorComponentDtoAttrEnum, UserCapacitiesListDateGteErrorComponentDtoCodeEnum, UserCapacitiesListDateLteErrorComponentDtoAttrEnum, UserCapacitiesListDateLteErrorComponentDtoCodeEnum, UserCapacitiesListDepartmentIdErrorComponentDtoAttrEnum, UserCapacitiesListDepartmentIdErrorComponentDtoCodeEnum, UserCapacitiesListDepartmentIdInErrorComponentDtoAttrEnum, UserCapacitiesListDepartmentIdInErrorComponentDtoCodeEnum, UserCapacitiesListIdErrorComponentDtoAttrEnum, UserCapacitiesListIdErrorComponentDtoCodeEnum, UserCapacitiesListIdInErrorComponentDtoAttrEnum, UserCapacitiesListIdInErrorComponentDtoCodeEnum, UserCapacitiesListUserIdErrorComponentDtoAttrEnum, UserCapacitiesListUserIdErrorComponentDtoCodeEnum, UserCapacitiesListUserIdInErrorComponentDtoAttrEnum, UserCapacitiesListUserIdInErrorComponentDtoCodeEnum, UserCapacitiesListWorkTypeIdErrorComponentDtoAttrEnum, UserCapacitiesListWorkTypeIdErrorComponentDtoCodeEnum, UserCapacitiesListWorkTypeIdInErrorComponentDtoAttrEnum, UserCapacitiesListWorkTypeIdInErrorComponentDtoCodeEnum, UserLoginsApiService, UserLoginsListBranchErrorComponentDtoAttrEnum, UserLoginsListBranchErrorComponentDtoCodeEnum, UserLoginsListBranchInErrorComponentDtoAttrEnum, UserLoginsListBranchInErrorComponentDtoCodeEnum, UserLoginsListDepartmentErrorComponentDtoAttrEnum, UserLoginsListDepartmentErrorComponentDtoCodeEnum, UserLoginsListDepartmentInErrorComponentDtoAttrEnum, UserLoginsListDepartmentInErrorComponentDtoCodeEnum, UserLoginsListIdErrorComponentDtoAttrEnum, UserLoginsListIdErrorComponentDtoCodeEnum, UserLoginsListIdInErrorComponentDtoAttrEnum, UserLoginsListIdInErrorComponentDtoCodeEnum, UserLoginsListRoleErrorComponentDtoAttrEnum, UserLoginsListRoleErrorComponentDtoCodeEnum, UserLoginsListRoleInErrorComponentDtoAttrEnum, UserLoginsListRoleInErrorComponentDtoCodeEnum, UserLoginsListWorkTypeErrorComponentDtoAttrEnum, UserLoginsListWorkTypeErrorComponentDtoCodeEnum, UserLoginsListWorkTypeInErrorComponentDtoAttrEnum, UserLoginsListWorkTypeInErrorComponentDtoCodeEnum, UserLoginsUpdateEmailErrorComponentDtoAttrEnum, UserLoginsUpdateEmailErrorComponentDtoCodeEnum, UserLoginsUpdateIsStaffErrorComponentDtoAttrEnum, UserLoginsUpdateIsStaffErrorComponentDtoCodeEnum, UserLoginsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, UserLoginsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, UserLoginsUpdateRoleErrorComponentDtoAttrEnum, UserLoginsUpdateRoleErrorComponentDtoCodeEnum, UserPeriodStatusEnumDto, UserPeriodTypeEnumDto, UserPeriodsApiService, UserPeriodsChangeStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserPeriodsChangeStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum, UserPeriodsChangeStatusCreateStatusErrorComponentDtoAttrEnum, UserPeriodsChangeStatusCreateStatusErrorComponentDtoCodeEnum, UserPeriodsCreateDescriptionErrorComponentDtoAttrEnum, UserPeriodsCreateDescriptionErrorComponentDtoCodeEnum, UserPeriodsCreateFileErrorComponentDtoAttrEnum, UserPeriodsCreateFileErrorComponentDtoCodeEnum, UserPeriodsCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserPeriodsCreateNonFieldErrorsErrorComponentDtoCodeEnum, UserPeriodsCreatePeriodEndErrorComponentDtoAttrEnum, UserPeriodsCreatePeriodEndErrorComponentDtoCodeEnum, UserPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoAttrEnum, UserPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoCodeEnum, UserPeriodsCreatePeriodStartErrorComponentDtoAttrEnum, UserPeriodsCreatePeriodStartErrorComponentDtoCodeEnum, UserPeriodsCreateTypeErrorComponentDtoAttrEnum, UserPeriodsCreateTypeErrorComponentDtoCodeEnum, UserPeriodsCreateUserErrorComponentDtoAttrEnum, UserPeriodsCreateUserErrorComponentDtoCodeEnum, UserPeriodsListIdErrorComponentDtoAttrEnum, UserPeriodsListIdErrorComponentDtoCodeEnum, UserPeriodsListIdInErrorComponentDtoAttrEnum, UserPeriodsListIdInErrorComponentDtoCodeEnum, UserPeriodsListPeriodOverlapErrorComponentDtoAttrEnum, UserPeriodsListPeriodOverlapErrorComponentDtoCodeEnum, UserPeriodsListStatusErrorComponentDtoAttrEnum, UserPeriodsListStatusErrorComponentDtoCodeEnum, UserPeriodsListStatusInErrorComponentDtoAttrEnum, UserPeriodsListStatusInErrorComponentDtoCodeEnum, UserPeriodsListTypeErrorComponentDtoAttrEnum, UserPeriodsListTypeErrorComponentDtoCodeEnum, UserPeriodsListTypeInErrorComponentDtoAttrEnum, UserPeriodsListTypeInErrorComponentDtoCodeEnum, UserPeriodsListUserBranchIdInErrorComponentDtoAttrEnum, UserPeriodsListUserBranchIdInErrorComponentDtoCodeEnum, UserPeriodsListUserDepartmentIdInErrorComponentDtoAttrEnum, UserPeriodsListUserDepartmentIdInErrorComponentDtoCodeEnum, UserPeriodsListUserIdInErrorComponentDtoAttrEnum, UserPeriodsListUserIdInErrorComponentDtoCodeEnum, UserPeriodsListUserStatusErrorComponentDtoAttrEnum, UserPeriodsListUserStatusErrorComponentDtoCodeEnum, UserPeriodsListUserStatusInErrorComponentDtoAttrEnum, UserPeriodsListUserStatusInErrorComponentDtoCodeEnum, UserPeriodsListUserSuperviseesIdInErrorComponentDtoAttrEnum, UserPeriodsListUserSuperviseesIdInErrorComponentDtoCodeEnum, UserPeriodsListUserSupervisorsIdInErrorComponentDtoAttrEnum, UserPeriodsListUserSupervisorsIdInErrorComponentDtoCodeEnum, UserPeriodsListUserWorkTypeIdInErrorComponentDtoAttrEnum, UserPeriodsListUserWorkTypeIdInErrorComponentDtoCodeEnum, UserPeriodsUpdateDescriptionErrorComponentDtoAttrEnum, UserPeriodsUpdateDescriptionErrorComponentDtoCodeEnum, UserPeriodsUpdateFileErrorComponentDtoAttrEnum, UserPeriodsUpdateFileErrorComponentDtoCodeEnum, UserPeriodsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, UserPeriodsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, UserPeriodsUpdatePeriodEndErrorComponentDtoAttrEnum, UserPeriodsUpdatePeriodEndErrorComponentDtoCodeEnum, UserPeriodsUpdatePeriodNonFieldErrorsErrorComponentDtoAttrEnum, UserPeriodsUpdatePeriodNonFieldErrorsErrorComponentDtoCodeEnum, UserPeriodsUpdatePeriodStartErrorComponentDtoAttrEnum, UserPeriodsUpdatePeriodStartErrorComponentDtoCodeEnum, UserPeriodsUpdateTypeErrorComponentDtoAttrEnum, UserPeriodsUpdateTypeErrorComponentDtoCodeEnum, UserPeriodsUpdateUserErrorComponentDtoAttrEnum, UserPeriodsUpdateUserErrorComponentDtoCodeEnum, UserScoresApiService, UserScoresCreateCommentErrorComponentDtoAttrEnum, UserScoresCreateCommentErrorComponentDtoCodeEnum, UserScoresCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserScoresCreateNonFieldErrorsErrorComponentDtoCodeEnum, UserScoresCreateReceiverErrorComponentDtoAttrEnum, UserScoresCreateReceiverErrorComponentDtoCodeEnum, UserScoresCreateScoreErrorComponentDtoAttrEnum, UserScoresCreateScoreErrorComponentDtoCodeEnum, UserScoresListCommentIcontainsErrorComponentDtoAttrEnum, UserScoresListCommentIcontainsErrorComponentDtoCodeEnum, UserScoresListCreatedByErrorComponentDtoAttrEnum, UserScoresListCreatedByErrorComponentDtoCodeEnum, UserScoresListCreatedByInErrorComponentDtoAttrEnum, UserScoresListCreatedByInErrorComponentDtoCodeEnum, UserScoresListCreatedDateGteErrorComponentDtoAttrEnum, UserScoresListCreatedDateGteErrorComponentDtoCodeEnum, UserScoresListCreatedDateLteErrorComponentDtoAttrEnum, UserScoresListCreatedDateLteErrorComponentDtoCodeEnum, UserScoresListCreatedGteErrorComponentDtoAttrEnum, UserScoresListCreatedGteErrorComponentDtoCodeEnum, UserScoresListCreatedLteErrorComponentDtoAttrEnum, UserScoresListCreatedLteErrorComponentDtoCodeEnum, UserScoresListIdErrorComponentDtoAttrEnum, UserScoresListIdErrorComponentDtoCodeEnum, UserScoresListIdInErrorComponentDtoAttrEnum, UserScoresListIdInErrorComponentDtoCodeEnum, UserScoresListReceiverErrorComponentDtoAttrEnum, UserScoresListReceiverErrorComponentDtoCodeEnum, UserScoresListReceiverInErrorComponentDtoAttrEnum, UserScoresListReceiverInErrorComponentDtoCodeEnum, UserScoresListScoreErrorComponentDtoAttrEnum, UserScoresListScoreErrorComponentDtoCodeEnum, UserScoresListScoreInErrorComponentDtoAttrEnum, UserScoresListScoreInErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveCommentIcontainsErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveCommentIcontainsErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveCreatedByErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveCreatedByErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveCreatedByInErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveCreatedByInErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveCreatedDateGteErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveCreatedDateGteErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveCreatedDateLteErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveCreatedDateLteErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveCreatedGteErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveCreatedGteErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveCreatedLteErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveCreatedLteErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveIdErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveIdErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveIdInErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveIdInErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveReceiverErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveReceiverErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveReceiverInErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveReceiverInErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveScoreErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveScoreErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveScoreInErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveScoreInErrorComponentDtoCodeEnum, UserStatusEnumDto, UserTimezoneSettingApiService, UserTimezoneSettingCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserTimezoneSettingCreateNonFieldErrorsErrorComponentDtoCodeEnum, UserTimezoneSettingCreateOrderingErrorComponentDtoAttrEnum, UserTimezoneSettingCreateOrderingErrorComponentDtoCodeEnum, UserTimezoneSettingCreateUse12FormatErrorComponentDtoAttrEnum, UserTimezoneSettingCreateUse12FormatErrorComponentDtoCodeEnum, UserTimezoneSettingOrderingEnumDto, UserTimezonesApiService, UserTimezonesSaveAllCreateINDEXNameErrorComponentDtoAttrEnum, UserTimezonesSaveAllCreateINDEXNameErrorComponentDtoCodeEnum, UserTimezonesSaveAllCreateINDEXNonFieldErrorsErrorComponentDtoAttrEnum, UserTimezonesSaveAllCreateINDEXNonFieldErrorsErrorComponentDtoCodeEnum, UserTimezonesSaveAllCreateINDEXTimezoneErrorComponentDtoAttrEnum, UserTimezonesSaveAllCreateINDEXTimezoneErrorComponentDtoCodeEnum, UserTimezonesSaveAllCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserTimezonesSaveAllCreateNonFieldErrorsErrorComponentDtoCodeEnum, UsersApiService, UsersCreateAvatarErrorComponentDtoAttrEnum, UsersCreateAvatarErrorComponentDtoCodeEnum, UsersCreateBirthdayErrorComponentDtoAttrEnum, UsersCreateBirthdayErrorComponentDtoCodeEnum, UsersCreateBranchErrorComponentDtoAttrEnum, UsersCreateBranchErrorComponentDtoCodeEnum, UsersCreateCreatedByErrorComponentDtoAttrEnum, UsersCreateCreatedByErrorComponentDtoCodeEnum, UsersCreateDepartmentErrorComponentDtoAttrEnum, UsersCreateDepartmentErrorComponentDtoCodeEnum, UsersCreateDismissalReasonsErrorComponentDtoAttrEnum, UsersCreateDismissalReasonsErrorComponentDtoCodeEnum, UsersCreateEmailErrorComponentDtoAttrEnum, UsersCreateEmailErrorComponentDtoCodeEnum, UsersCreateFirstNameErrorComponentDtoAttrEnum, UsersCreateFirstNameErrorComponentDtoCodeEnum, UsersCreateFirstWorkingDayByContractErrorComponentDtoAttrEnum, UsersCreateFirstWorkingDayByContractErrorComponentDtoCodeEnum, UsersCreateFirstWorkingDayErrorComponentDtoAttrEnum, UsersCreateFirstWorkingDayErrorComponentDtoCodeEnum, UsersCreateGithubUsernameErrorComponentDtoAttrEnum, UsersCreateGithubUsernameErrorComponentDtoCodeEnum, UsersCreateHomePhoneErrorComponentDtoAttrEnum, UsersCreateHomePhoneErrorComponentDtoCodeEnum, UsersCreateIsInternErrorComponentDtoAttrEnum, UsersCreateIsInternErrorComponentDtoCodeEnum, UsersCreateIsPartTimeErrorComponentDtoAttrEnum, UsersCreateIsPartTimeErrorComponentDtoCodeEnum, UsersCreateJiraAccountIdErrorComponentDtoAttrEnum, UsersCreateJiraAccountIdErrorComponentDtoCodeEnum, UsersCreateLastNameErrorComponentDtoAttrEnum, UsersCreateLastNameErrorComponentDtoCodeEnum, UsersCreateLastWorkingDayErrorComponentDtoAttrEnum, UsersCreateLastWorkingDayErrorComponentDtoCodeEnum, UsersCreateLocationErrorComponentDtoAttrEnum, UsersCreateLocationErrorComponentDtoCodeEnum, UsersCreateMiddleNameErrorComponentDtoAttrEnum, UsersCreateMiddleNameErrorComponentDtoCodeEnum, UsersCreateNonFieldErrorsErrorComponentDtoAttrEnum, UsersCreateNonFieldErrorsErrorComponentDtoCodeEnum, UsersCreateOfficePhoneErrorComponentDtoAttrEnum, UsersCreateOfficePhoneErrorComponentDtoCodeEnum, UsersCreateOnsiteErrorComponentDtoAttrEnum, UsersCreateOnsiteErrorComponentDtoCodeEnum, UsersCreatePersonalEmailErrorComponentDtoAttrEnum, UsersCreatePersonalEmailErrorComponentDtoCodeEnum, UsersCreatePersonalPhoneErrorComponentDtoAttrEnum, UsersCreatePersonalPhoneErrorComponentDtoCodeEnum, UsersCreateRecruitedByErrorComponentDtoAttrEnum, UsersCreateRecruitedByErrorComponentDtoCodeEnum, UsersCreateRoleErrorComponentDtoAttrEnum, UsersCreateRoleErrorComponentDtoCodeEnum, UsersCreateSkypeErrorComponentDtoAttrEnum, UsersCreateSkypeErrorComponentDtoCodeEnum, UsersCreateSlackIdErrorComponentDtoAttrEnum, UsersCreateSlackIdErrorComponentDtoCodeEnum, UsersCreateStatusErrorComponentDtoAttrEnum, UsersCreateStatusErrorComponentDtoCodeEnum, UsersCreateSuperviseesErrorComponentDtoAttrEnum, UsersCreateSuperviseesErrorComponentDtoCodeEnum, UsersCreateSupervisorsErrorComponentDtoAttrEnum, UsersCreateSupervisorsErrorComponentDtoCodeEnum, UsersCreateTimezoneErrorComponentDtoAttrEnum, UsersCreateTimezoneErrorComponentDtoCodeEnum, UsersCreateUpdatedByErrorComponentDtoAttrEnum, UsersCreateUpdatedByErrorComponentDtoCodeEnum, UsersCreateUtilizationPercentErrorComponentDtoAttrEnum, UsersCreateUtilizationPercentErrorComponentDtoCodeEnum, UsersCreateVendorErrorComponentDtoAttrEnum, UsersCreateVendorErrorComponentDtoCodeEnum, UsersCreateWorkTypeErrorComponentDtoAttrEnum, UsersCreateWorkTypeErrorComponentDtoCodeEnum, UsersListBranchErrorComponentDtoAttrEnum, UsersListBranchErrorComponentDtoCodeEnum, UsersListBranchInErrorComponentDtoAttrEnum, UsersListBranchInErrorComponentDtoCodeEnum, UsersListDepartmentErrorComponentDtoAttrEnum, UsersListDepartmentErrorComponentDtoCodeEnum, UsersListDepartmentInErrorComponentDtoAttrEnum, UsersListDepartmentInErrorComponentDtoCodeEnum, UsersListIdErrorComponentDtoAttrEnum, UsersListIdErrorComponentDtoCodeEnum, UsersListIdInErrorComponentDtoAttrEnum, UsersListIdInErrorComponentDtoCodeEnum, UsersListRoleErrorComponentDtoAttrEnum, UsersListRoleErrorComponentDtoCodeEnum, UsersListRoleInErrorComponentDtoAttrEnum, UsersListRoleInErrorComponentDtoCodeEnum, UsersListStatusErrorComponentDtoAttrEnum, UsersListStatusErrorComponentDtoCodeEnum, UsersListStatusInErrorComponentDtoAttrEnum, UsersListStatusInErrorComponentDtoCodeEnum, UsersListSuperviseesIdInErrorComponentDtoAttrEnum, UsersListSuperviseesIdInErrorComponentDtoCodeEnum, UsersListSupervisorsIdInErrorComponentDtoAttrEnum, UsersListSupervisorsIdInErrorComponentDtoCodeEnum, UsersListWorkTypeErrorComponentDtoAttrEnum, UsersListWorkTypeErrorComponentDtoCodeEnum, UsersListWorkTypeInErrorComponentDtoAttrEnum, UsersListWorkTypeInErrorComponentDtoCodeEnum, UsersUpdateAvatarErrorComponentDtoAttrEnum, UsersUpdateAvatarErrorComponentDtoCodeEnum, UsersUpdateBirthdayErrorComponentDtoAttrEnum, UsersUpdateBirthdayErrorComponentDtoCodeEnum, UsersUpdateBranchErrorComponentDtoAttrEnum, UsersUpdateBranchErrorComponentDtoCodeEnum, UsersUpdateCreatedByErrorComponentDtoAttrEnum, UsersUpdateCreatedByErrorComponentDtoCodeEnum, UsersUpdateDepartmentErrorComponentDtoAttrEnum, UsersUpdateDepartmentErrorComponentDtoCodeEnum, UsersUpdateDismissalReasonsErrorComponentDtoAttrEnum, UsersUpdateDismissalReasonsErrorComponentDtoCodeEnum, UsersUpdateEmailErrorComponentDtoAttrEnum, UsersUpdateEmailErrorComponentDtoCodeEnum, UsersUpdateFirstNameErrorComponentDtoAttrEnum, UsersUpdateFirstNameErrorComponentDtoCodeEnum, UsersUpdateFirstWorkingDayByContractErrorComponentDtoAttrEnum, UsersUpdateFirstWorkingDayByContractErrorComponentDtoCodeEnum, UsersUpdateFirstWorkingDayErrorComponentDtoAttrEnum, UsersUpdateFirstWorkingDayErrorComponentDtoCodeEnum, UsersUpdateGithubUsernameErrorComponentDtoAttrEnum, UsersUpdateGithubUsernameErrorComponentDtoCodeEnum, UsersUpdateHomePhoneErrorComponentDtoAttrEnum, UsersUpdateHomePhoneErrorComponentDtoCodeEnum, UsersUpdateIsInternErrorComponentDtoAttrEnum, UsersUpdateIsInternErrorComponentDtoCodeEnum, UsersUpdateIsPartTimeErrorComponentDtoAttrEnum, UsersUpdateIsPartTimeErrorComponentDtoCodeEnum, UsersUpdateJiraAccountIdErrorComponentDtoAttrEnum, UsersUpdateJiraAccountIdErrorComponentDtoCodeEnum, UsersUpdateLastNameErrorComponentDtoAttrEnum, UsersUpdateLastNameErrorComponentDtoCodeEnum, UsersUpdateLastWorkingDayErrorComponentDtoAttrEnum, UsersUpdateLastWorkingDayErrorComponentDtoCodeEnum, UsersUpdateLocationErrorComponentDtoAttrEnum, UsersUpdateLocationErrorComponentDtoCodeEnum, UsersUpdateMiddleNameErrorComponentDtoAttrEnum, UsersUpdateMiddleNameErrorComponentDtoCodeEnum, UsersUpdateNonFieldErrorsErrorComponentDtoAttrEnum, UsersUpdateNonFieldErrorsErrorComponentDtoCodeEnum, UsersUpdateOfficePhoneErrorComponentDtoAttrEnum, UsersUpdateOfficePhoneErrorComponentDtoCodeEnum, UsersUpdateOnsiteErrorComponentDtoAttrEnum, UsersUpdateOnsiteErrorComponentDtoCodeEnum, UsersUpdatePersonalEmailErrorComponentDtoAttrEnum, UsersUpdatePersonalEmailErrorComponentDtoCodeEnum, UsersUpdatePersonalPhoneErrorComponentDtoAttrEnum, UsersUpdatePersonalPhoneErrorComponentDtoCodeEnum, UsersUpdateRecruitedByErrorComponentDtoAttrEnum, UsersUpdateRecruitedByErrorComponentDtoCodeEnum, UsersUpdateRoleErrorComponentDtoAttrEnum, UsersUpdateRoleErrorComponentDtoCodeEnum, UsersUpdateSkypeErrorComponentDtoAttrEnum, UsersUpdateSkypeErrorComponentDtoCodeEnum, UsersUpdateSlackIdErrorComponentDtoAttrEnum, UsersUpdateSlackIdErrorComponentDtoCodeEnum, UsersUpdateStatusErrorComponentDtoAttrEnum, UsersUpdateStatusErrorComponentDtoCodeEnum, UsersUpdateSuperviseesErrorComponentDtoAttrEnum, UsersUpdateSuperviseesErrorComponentDtoCodeEnum, UsersUpdateSupervisorsErrorComponentDtoAttrEnum, UsersUpdateSupervisorsErrorComponentDtoCodeEnum, UsersUpdateTimezoneErrorComponentDtoAttrEnum, UsersUpdateTimezoneErrorComponentDtoCodeEnum, UsersUpdateUpdatedByErrorComponentDtoAttrEnum, UsersUpdateUpdatedByErrorComponentDtoCodeEnum, UsersUpdateUtilizationPercentErrorComponentDtoAttrEnum, UsersUpdateUtilizationPercentErrorComponentDtoCodeEnum, UsersUpdateVendorErrorComponentDtoAttrEnum, UsersUpdateVendorErrorComponentDtoCodeEnum, UsersUpdateWorkTypeErrorComponentDtoAttrEnum, UsersUpdateWorkTypeErrorComponentDtoCodeEnum, UsersUtilizationChartListBranchErrorComponentDtoAttrEnum, UsersUtilizationChartListBranchErrorComponentDtoCodeEnum, UsersUtilizationChartListBranchInErrorComponentDtoAttrEnum, UsersUtilizationChartListBranchInErrorComponentDtoCodeEnum, UsersUtilizationChartListDateGteErrorComponentDtoAttrEnum, UsersUtilizationChartListDateGteErrorComponentDtoCodeEnum, UsersUtilizationChartListDateLteErrorComponentDtoAttrEnum, UsersUtilizationChartListDateLteErrorComponentDtoCodeEnum, UsersUtilizationChartListDepartmentErrorComponentDtoAttrEnum, UsersUtilizationChartListDepartmentErrorComponentDtoCodeEnum, UsersUtilizationChartListDepartmentInErrorComponentDtoAttrEnum, UsersUtilizationChartListDepartmentInErrorComponentDtoCodeEnum, UsersUtilizationChartListIdErrorComponentDtoAttrEnum, UsersUtilizationChartListIdErrorComponentDtoCodeEnum, UsersUtilizationChartListIdInErrorComponentDtoAttrEnum, UsersUtilizationChartListIdInErrorComponentDtoCodeEnum, UsersUtilizationChartListIsTotalErrorComponentDtoAttrEnum, UsersUtilizationChartListIsTotalErrorComponentDtoCodeEnum, UsersUtilizationChartListRoleErrorComponentDtoAttrEnum, UsersUtilizationChartListRoleErrorComponentDtoCodeEnum, UsersUtilizationChartListRoleInErrorComponentDtoAttrEnum, UsersUtilizationChartListRoleInErrorComponentDtoCodeEnum, UsersUtilizationChartListStatusErrorComponentDtoAttrEnum, UsersUtilizationChartListStatusErrorComponentDtoCodeEnum, UsersUtilizationChartListStatusInErrorComponentDtoAttrEnum, UsersUtilizationChartListStatusInErrorComponentDtoCodeEnum, UsersUtilizationChartListSuperviseesIdInErrorComponentDtoAttrEnum, UsersUtilizationChartListSuperviseesIdInErrorComponentDtoCodeEnum, UsersUtilizationChartListSupervisorsIdInErrorComponentDtoAttrEnum, UsersUtilizationChartListSupervisorsIdInErrorComponentDtoCodeEnum, UsersUtilizationChartListTimeSpanErrorComponentDtoAttrEnum, UsersUtilizationChartListTimeSpanErrorComponentDtoCodeEnum, UsersUtilizationChartListWorkTypeErrorComponentDtoAttrEnum, UsersUtilizationChartListWorkTypeErrorComponentDtoCodeEnum, UsersUtilizationChartListWorkTypeInErrorComponentDtoAttrEnum, UsersUtilizationChartListWorkTypeInErrorComponentDtoCodeEnum, ValidationErrorEnumDto, VendorsApiService, VendorsCreateNameErrorComponentDtoAttrEnum, VendorsCreateNameErrorComponentDtoCodeEnum, VendorsCreateNonFieldErrorsErrorComponentDtoAttrEnum, VendorsCreateNonFieldErrorsErrorComponentDtoCodeEnum, VendorsListIdErrorComponentDtoAttrEnum, VendorsListIdErrorComponentDtoCodeEnum, VendorsListIdInErrorComponentDtoAttrEnum, VendorsListIdInErrorComponentDtoCodeEnum, VendorsUpdateNameErrorComponentDtoAttrEnum, VendorsUpdateNameErrorComponentDtoCodeEnum, VendorsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, VendorsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, WhoAmIApiService, WorkTypesApiService, WorkTypesChangeActiveStatusCreateIsActiveErrorComponentDtoAttrEnum, WorkTypesChangeActiveStatusCreateIsActiveErrorComponentDtoCodeEnum, WorkTypesChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum, WorkTypesChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum, WorkTypesCreateDepartmentErrorComponentDtoAttrEnum, WorkTypesCreateDepartmentErrorComponentDtoCodeEnum, WorkTypesCreateNameErrorComponentDtoAttrEnum, WorkTypesCreateNameErrorComponentDtoCodeEnum, WorkTypesCreateNonFieldErrorsErrorComponentDtoAttrEnum, WorkTypesCreateNonFieldErrorsErrorComponentDtoCodeEnum, WorkTypesCreateParentErrorComponentDtoAttrEnum, WorkTypesCreateParentErrorComponentDtoCodeEnum, WorkTypesListDepartmentErrorComponentDtoAttrEnum, WorkTypesListDepartmentErrorComponentDtoCodeEnum, WorkTypesListDepartmentInErrorComponentDtoAttrEnum, WorkTypesListDepartmentInErrorComponentDtoCodeEnum, WorkTypesListIdErrorComponentDtoAttrEnum, WorkTypesListIdErrorComponentDtoCodeEnum, WorkTypesListIdInErrorComponentDtoAttrEnum, WorkTypesListIdInErrorComponentDtoCodeEnum, WorkTypesListParentErrorComponentDtoAttrEnum, WorkTypesListParentErrorComponentDtoCodeEnum, WorkTypesListParentInErrorComponentDtoAttrEnum, WorkTypesListParentInErrorComponentDtoCodeEnum, WorkTypesUpdateDepartmentErrorComponentDtoAttrEnum, WorkTypesUpdateDepartmentErrorComponentDtoCodeEnum, WorkTypesUpdateNameErrorComponentDtoAttrEnum, WorkTypesUpdateNameErrorComponentDtoCodeEnum, WorkTypesUpdateNonFieldErrorsErrorComponentDtoAttrEnum, WorkTypesUpdateNonFieldErrorsErrorComponentDtoCodeEnum, WorkTypesUpdateParentErrorComponentDtoAttrEnum, WorkTypesUpdateParentErrorComponentDtoCodeEnum };
|
|
28981
|
+
export { APIS, ApiModule, BASE_PATH, BillingFrequencyEnumDto, BillingMethodEnumDto, BillingTypeEnumDto, BranchPeriodTypeEnumDto, BranchPeriodsApiService, BranchPeriodsCreateBranchErrorComponentDtoAttrEnum, BranchPeriodsCreateBranchErrorComponentDtoCodeEnum, BranchPeriodsCreateDescriptionErrorComponentDtoAttrEnum, BranchPeriodsCreateDescriptionErrorComponentDtoCodeEnum, BranchPeriodsCreateNonFieldErrorsErrorComponentDtoAttrEnum, BranchPeriodsCreateNonFieldErrorsErrorComponentDtoCodeEnum, BranchPeriodsCreatePeriodEndErrorComponentDtoAttrEnum, BranchPeriodsCreatePeriodEndErrorComponentDtoCodeEnum, BranchPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoAttrEnum, BranchPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoCodeEnum, BranchPeriodsCreatePeriodStartErrorComponentDtoAttrEnum, BranchPeriodsCreatePeriodStartErrorComponentDtoCodeEnum, BranchPeriodsCreateTitleErrorComponentDtoAttrEnum, BranchPeriodsCreateTitleErrorComponentDtoCodeEnum, BranchPeriodsCreateTypeErrorComponentDtoAttrEnum, BranchPeriodsCreateTypeErrorComponentDtoCodeEnum, BranchPeriodsUpdateBranchErrorComponentDtoAttrEnum, BranchPeriodsUpdateBranchErrorComponentDtoCodeEnum, BranchPeriodsUpdateDescriptionErrorComponentDtoAttrEnum, BranchPeriodsUpdateDescriptionErrorComponentDtoCodeEnum, BranchPeriodsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, BranchPeriodsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, BranchPeriodsUpdatePeriodEndErrorComponentDtoAttrEnum, BranchPeriodsUpdatePeriodEndErrorComponentDtoCodeEnum, BranchPeriodsUpdatePeriodNonFieldErrorsErrorComponentDtoAttrEnum, BranchPeriodsUpdatePeriodNonFieldErrorsErrorComponentDtoCodeEnum, BranchPeriodsUpdatePeriodStartErrorComponentDtoAttrEnum, BranchPeriodsUpdatePeriodStartErrorComponentDtoCodeEnum, BranchPeriodsUpdateTitleErrorComponentDtoAttrEnum, BranchPeriodsUpdateTitleErrorComponentDtoCodeEnum, BranchPeriodsUpdateTypeErrorComponentDtoAttrEnum, BranchPeriodsUpdateTypeErrorComponentDtoCodeEnum, BranchesApiService, BranchesChangeActiveStatusCreateIsActiveErrorComponentDtoAttrEnum, BranchesChangeActiveStatusCreateIsActiveErrorComponentDtoCodeEnum, BranchesChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum, BranchesChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum, BranchesCreateAddress1ErrorComponentDtoAttrEnum, BranchesCreateAddress1ErrorComponentDtoCodeEnum, BranchesCreateAddress2ErrorComponentDtoAttrEnum, BranchesCreateAddress2ErrorComponentDtoCodeEnum, BranchesCreateCeoErrorComponentDtoAttrEnum, BranchesCreateCeoErrorComponentDtoCodeEnum, BranchesCreateCodeErrorComponentDtoAttrEnum, BranchesCreateCodeErrorComponentDtoCodeEnum, BranchesCreateCountryErrorComponentDtoAttrEnum, BranchesCreateCountryErrorComponentDtoCodeEnum, BranchesCreateHrEmailErrorComponentDtoAttrEnum, BranchesCreateHrEmailErrorComponentDtoCodeEnum, BranchesCreateIconErrorComponentDtoAttrEnum, BranchesCreateIconErrorComponentDtoCodeEnum, BranchesCreateIsOverseaErrorComponentDtoAttrEnum, BranchesCreateIsOverseaErrorComponentDtoCodeEnum, BranchesCreateIsVacationFileRequiredErrorComponentDtoAttrEnum, BranchesCreateIsVacationFileRequiredErrorComponentDtoCodeEnum, BranchesCreateNameErrorComponentDtoAttrEnum, BranchesCreateNameErrorComponentDtoCodeEnum, BranchesCreateNonFieldErrorsErrorComponentDtoAttrEnum, BranchesCreateNonFieldErrorsErrorComponentDtoCodeEnum, BranchesCreatePostalCodeErrorComponentDtoAttrEnum, BranchesCreatePostalCodeErrorComponentDtoCodeEnum, BranchesCreateStateErrorComponentDtoAttrEnum, BranchesCreateStateErrorComponentDtoCodeEnum, BranchesCreateTimezoneErrorComponentDtoAttrEnum, BranchesCreateTimezoneErrorComponentDtoCodeEnum, BranchesCreateVacationDaysCountErrorComponentDtoAttrEnum, BranchesCreateVacationDaysCountErrorComponentDtoCodeEnum, BranchesCreateVacationPeriodErrorComponentDtoAttrEnum, BranchesCreateVacationPeriodErrorComponentDtoCodeEnum, BranchesListIdErrorComponentDtoAttrEnum, BranchesListIdErrorComponentDtoCodeEnum, BranchesListIdInErrorComponentDtoAttrEnum, BranchesListIdInErrorComponentDtoCodeEnum, BranchesUpdateAddress1ErrorComponentDtoAttrEnum, BranchesUpdateAddress1ErrorComponentDtoCodeEnum, BranchesUpdateAddress2ErrorComponentDtoAttrEnum, BranchesUpdateAddress2ErrorComponentDtoCodeEnum, BranchesUpdateCeoErrorComponentDtoAttrEnum, BranchesUpdateCeoErrorComponentDtoCodeEnum, BranchesUpdateCodeErrorComponentDtoAttrEnum, BranchesUpdateCodeErrorComponentDtoCodeEnum, BranchesUpdateCountryErrorComponentDtoAttrEnum, BranchesUpdateCountryErrorComponentDtoCodeEnum, BranchesUpdateHrEmailErrorComponentDtoAttrEnum, BranchesUpdateHrEmailErrorComponentDtoCodeEnum, BranchesUpdateIconErrorComponentDtoAttrEnum, BranchesUpdateIconErrorComponentDtoCodeEnum, BranchesUpdateIsOverseaErrorComponentDtoAttrEnum, BranchesUpdateIsOverseaErrorComponentDtoCodeEnum, BranchesUpdateIsVacationFileRequiredErrorComponentDtoAttrEnum, BranchesUpdateIsVacationFileRequiredErrorComponentDtoCodeEnum, BranchesUpdateNameErrorComponentDtoAttrEnum, BranchesUpdateNameErrorComponentDtoCodeEnum, BranchesUpdateNonFieldErrorsErrorComponentDtoAttrEnum, BranchesUpdateNonFieldErrorsErrorComponentDtoCodeEnum, BranchesUpdatePostalCodeErrorComponentDtoAttrEnum, BranchesUpdatePostalCodeErrorComponentDtoCodeEnum, BranchesUpdateStateErrorComponentDtoAttrEnum, BranchesUpdateStateErrorComponentDtoCodeEnum, BranchesUpdateTimezoneErrorComponentDtoAttrEnum, BranchesUpdateTimezoneErrorComponentDtoCodeEnum, BranchesUpdateVacationDaysCountErrorComponentDtoAttrEnum, BranchesUpdateVacationDaysCountErrorComponentDtoCodeEnum, BranchesUpdateVacationPeriodErrorComponentDtoAttrEnum, BranchesUpdateVacationPeriodErrorComponentDtoCodeEnum, BranchesUsersStatsListIdErrorComponentDtoAttrEnum, BranchesUsersStatsListIdErrorComponentDtoCodeEnum, BranchesUsersStatsListIdInErrorComponentDtoAttrEnum, BranchesUsersStatsListIdInErrorComponentDtoCodeEnum, BranchesUsersStatsListUsersSearchErrorComponentDtoAttrEnum, BranchesUsersStatsListUsersSearchErrorComponentDtoCodeEnum, COLLECTION_FORMATS, ClientErrorEnumDto, ClientNotesApiService, ClientNotesListClientErrorComponentDtoAttrEnum, ClientNotesListClientErrorComponentDtoCodeEnum, ClientNotesListClientInErrorComponentDtoAttrEnum, ClientNotesListClientInErrorComponentDtoCodeEnum, ClientNotesListIdErrorComponentDtoAttrEnum, ClientNotesListIdErrorComponentDtoCodeEnum, ClientNotesListIdInErrorComponentDtoAttrEnum, ClientNotesListIdInErrorComponentDtoCodeEnum, ClientStatusEnumDto, ClientsApiService, ClientsListAccountManagerErrorComponentDtoAttrEnum, ClientsListAccountManagerErrorComponentDtoCodeEnum, ClientsListAccountManagerInErrorComponentDtoAttrEnum, ClientsListAccountManagerInErrorComponentDtoCodeEnum, ClientsListAddress1ErrorComponentDtoAttrEnum, ClientsListAddress1ErrorComponentDtoCodeEnum, ClientsListAddress1InErrorComponentDtoAttrEnum, ClientsListAddress1InErrorComponentDtoCodeEnum, ClientsListAddress2ErrorComponentDtoAttrEnum, ClientsListAddress2ErrorComponentDtoCodeEnum, ClientsListAddress2InErrorComponentDtoAttrEnum, ClientsListAddress2InErrorComponentDtoCodeEnum, ClientsListBillingAddress1ErrorComponentDtoAttrEnum, ClientsListBillingAddress1ErrorComponentDtoCodeEnum, ClientsListBillingAddress1InErrorComponentDtoAttrEnum, ClientsListBillingAddress1InErrorComponentDtoCodeEnum, ClientsListBillingAddress2ErrorComponentDtoAttrEnum, ClientsListBillingAddress2ErrorComponentDtoCodeEnum, ClientsListBillingAddress2InErrorComponentDtoAttrEnum, ClientsListBillingAddress2InErrorComponentDtoCodeEnum, ClientsListBillingCityErrorComponentDtoAttrEnum, ClientsListBillingCityErrorComponentDtoCodeEnum, ClientsListBillingCityInErrorComponentDtoAttrEnum, ClientsListBillingCityInErrorComponentDtoCodeEnum, ClientsListBillingCountryErrorComponentDtoAttrEnum, ClientsListBillingCountryErrorComponentDtoCodeEnum, ClientsListBillingCountryInErrorComponentDtoAttrEnum, ClientsListBillingCountryInErrorComponentDtoCodeEnum, ClientsListBillingMethodErrorComponentDtoAttrEnum, ClientsListBillingMethodErrorComponentDtoCodeEnum, ClientsListBillingMethodInErrorComponentDtoAttrEnum, ClientsListBillingMethodInErrorComponentDtoCodeEnum, ClientsListBillingNotesContainsErrorComponentDtoAttrEnum, ClientsListBillingNotesContainsErrorComponentDtoCodeEnum, ClientsListBillingNotesErrorComponentDtoAttrEnum, ClientsListBillingNotesErrorComponentDtoCodeEnum, ClientsListBillingNotesInErrorComponentDtoAttrEnum, ClientsListBillingNotesInErrorComponentDtoCodeEnum, ClientsListBillingStateErrorComponentDtoAttrEnum, ClientsListBillingStateErrorComponentDtoCodeEnum, ClientsListBillingStateInErrorComponentDtoAttrEnum, ClientsListBillingStateInErrorComponentDtoCodeEnum, ClientsListBillingZipErrorComponentDtoAttrEnum, ClientsListBillingZipErrorComponentDtoCodeEnum, ClientsListBillingZipInErrorComponentDtoAttrEnum, ClientsListBillingZipInErrorComponentDtoCodeEnum, ClientsListCityErrorComponentDtoAttrEnum, ClientsListCityErrorComponentDtoCodeEnum, ClientsListCityInErrorComponentDtoAttrEnum, ClientsListCityInErrorComponentDtoCodeEnum, ClientsListContractUntilGteErrorComponentDtoAttrEnum, ClientsListContractUntilGteErrorComponentDtoCodeEnum, ClientsListContractUntilLteErrorComponentDtoAttrEnum, ClientsListContractUntilLteErrorComponentDtoCodeEnum, ClientsListCountryErrorComponentDtoAttrEnum, ClientsListCountryErrorComponentDtoCodeEnum, ClientsListCountryInErrorComponentDtoAttrEnum, ClientsListCountryInErrorComponentDtoCodeEnum, ClientsListCreatedByErrorComponentDtoAttrEnum, ClientsListCreatedByErrorComponentDtoCodeEnum, ClientsListCreatedByInErrorComponentDtoAttrEnum, ClientsListCreatedByInErrorComponentDtoCodeEnum, ClientsListIdErrorComponentDtoAttrEnum, ClientsListIdErrorComponentDtoCodeEnum, ClientsListIdInErrorComponentDtoAttrEnum, ClientsListIdInErrorComponentDtoCodeEnum, ClientsListNotesContainsErrorComponentDtoAttrEnum, ClientsListNotesContainsErrorComponentDtoCodeEnum, ClientsListNotesErrorComponentDtoAttrEnum, ClientsListNotesErrorComponentDtoCodeEnum, ClientsListNotesInErrorComponentDtoAttrEnum, ClientsListNotesInErrorComponentDtoCodeEnum, ClientsListPaymentRecipientNameErrorComponentDtoAttrEnum, ClientsListPaymentRecipientNameErrorComponentDtoCodeEnum, ClientsListPaymentRecipientNameInErrorComponentDtoAttrEnum, ClientsListPaymentRecipientNameInErrorComponentDtoCodeEnum, ClientsListQbClientIdErrorComponentDtoAttrEnum, ClientsListQbClientIdErrorComponentDtoCodeEnum, ClientsListQbClientIdInErrorComponentDtoAttrEnum, ClientsListQbClientIdInErrorComponentDtoCodeEnum, ClientsListStateErrorComponentDtoAttrEnum, ClientsListStateErrorComponentDtoCodeEnum, ClientsListStateInErrorComponentDtoAttrEnum, ClientsListStateInErrorComponentDtoCodeEnum, ClientsListStatusErrorComponentDtoAttrEnum, ClientsListStatusErrorComponentDtoCodeEnum, ClientsListStatusInErrorComponentDtoAttrEnum, ClientsListStatusInErrorComponentDtoCodeEnum, ClientsListTimeLimitPerMonthGteErrorComponentDtoAttrEnum, ClientsListTimeLimitPerMonthGteErrorComponentDtoCodeEnum, ClientsListTimeLimitPerMonthLteErrorComponentDtoAttrEnum, ClientsListTimeLimitPerMonthLteErrorComponentDtoCodeEnum, ClientsListUpdatedByErrorComponentDtoAttrEnum, ClientsListUpdatedByErrorComponentDtoCodeEnum, ClientsListUpdatedByInErrorComponentDtoAttrEnum, ClientsListUpdatedByInErrorComponentDtoCodeEnum, ClientsListWebsiteErrorComponentDtoAttrEnum, ClientsListWebsiteErrorComponentDtoCodeEnum, ClientsListWebsiteInErrorComponentDtoAttrEnum, ClientsListWebsiteInErrorComponentDtoCodeEnum, ClientsListZipErrorComponentDtoAttrEnum, ClientsListZipErrorComponentDtoCodeEnum, ClientsListZipInErrorComponentDtoAttrEnum, ClientsListZipInErrorComponentDtoCodeEnum, ClientsListZohoAccountIdErrorComponentDtoAttrEnum, ClientsListZohoAccountIdErrorComponentDtoCodeEnum, ClientsListZohoAccountIdInErrorComponentDtoAttrEnum, ClientsListZohoAccountIdInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAccountManagerErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAccountManagerErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAccountManagerInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAccountManagerInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAddress1ErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAddress1ErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAddress1InErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAddress1InErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAddress2ErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAddress2ErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveAddress2InErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveAddress2InErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingAddress1ErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingAddress1ErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingAddress1InErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingAddress1InErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingAddress2ErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingAddress2ErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingAddress2InErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingAddress2InErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingCityErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingCityErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingCityInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingCityInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingCountryErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingCountryErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingCountryInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingCountryInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingMethodErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingMethodErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingMethodInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingMethodInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingNotesContainsErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingNotesContainsErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingNotesErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingNotesErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingNotesInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingNotesInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingStateErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingStateErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingStateInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingStateInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingZipErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingZipErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveBillingZipInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveBillingZipInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCityErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCityErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCityInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCityInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveContractUntilGteErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveContractUntilGteErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveContractUntilLteErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveContractUntilLteErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCountryErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCountryErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCountryInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCountryInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCreatedByErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCreatedByErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveCreatedByInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveCreatedByInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveIdErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveIdErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveIdInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveIdInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveNotesContainsErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveNotesContainsErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveNotesErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveNotesErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveNotesInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveNotesInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrievePaymentRecipientNameErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrievePaymentRecipientNameErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrievePaymentRecipientNameInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrievePaymentRecipientNameInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveQbClientIdErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveQbClientIdErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveQbClientIdInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveQbClientIdInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveStateErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveStateErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveStateInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveStateInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveStatusErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveStatusErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveStatusInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveStatusInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveTimeLimitPerMonthGteErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveTimeLimitPerMonthGteErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveTimeLimitPerMonthLteErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveTimeLimitPerMonthLteErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveUpdatedByErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveUpdatedByErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveUpdatedByInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveUpdatedByInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveWebsiteErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveWebsiteErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveWebsiteInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveWebsiteInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveZipErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveZipErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveZipInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveZipInErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveZohoAccountIdErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveZohoAccountIdErrorComponentDtoCodeEnum, ClientsWithMonthStatsRetrieveZohoAccountIdInErrorComponentDtoAttrEnum, ClientsWithMonthStatsRetrieveZohoAccountIdInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAccountManagerErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAccountManagerErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAccountManagerInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAccountManagerInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAddress1ErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAddress1ErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAddress1InErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAddress1InErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAddress2ErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAddress2ErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveAddress2InErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveAddress2InErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingAddress1ErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingAddress1ErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingAddress1InErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingAddress1InErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingAddress2ErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingAddress2ErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingAddress2InErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingAddress2InErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingCityErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingCityErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingCityInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingCityInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingCountryErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingCountryErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingCountryInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingCountryInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingMethodErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingMethodErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingMethodInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingMethodInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingNotesContainsErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingNotesContainsErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingNotesErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingNotesErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingNotesInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingNotesInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingStateErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingStateErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingStateInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingStateInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingZipErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingZipErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveBillingZipInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveBillingZipInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCityErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCityErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCityInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCityInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveContractUntilGteErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveContractUntilGteErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveContractUntilLteErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveContractUntilLteErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCountryErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCountryErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCountryInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCountryInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCreatedByErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCreatedByErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveCreatedByInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveCreatedByInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveIdErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveIdErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveIdInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveIdInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveNotesContainsErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveNotesContainsErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveNotesErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveNotesErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveNotesInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveNotesInErrorComponentDtoCodeEnum, ClientsWithStatsRetrievePaymentRecipientNameErrorComponentDtoAttrEnum, ClientsWithStatsRetrievePaymentRecipientNameErrorComponentDtoCodeEnum, ClientsWithStatsRetrievePaymentRecipientNameInErrorComponentDtoAttrEnum, ClientsWithStatsRetrievePaymentRecipientNameInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveQbClientIdErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveQbClientIdErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveQbClientIdInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveQbClientIdInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveStateErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveStateErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveStateInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveStateInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveStatusErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveStatusErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveStatusInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveStatusInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveTimeLimitPerMonthGteErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveTimeLimitPerMonthGteErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveTimeLimitPerMonthLteErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveTimeLimitPerMonthLteErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveUpdatedByErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveUpdatedByErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveUpdatedByInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveUpdatedByInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveWebsiteErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveWebsiteErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveWebsiteInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveWebsiteInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveZipErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveZipErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveZipInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveZipInErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveZohoAccountIdErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveZohoAccountIdErrorComponentDtoCodeEnum, ClientsWithStatsRetrieveZohoAccountIdInErrorComponentDtoAttrEnum, ClientsWithStatsRetrieveZohoAccountIdInErrorComponentDtoCodeEnum, ConfigEnumDto, Configuration, DepartmentsApiService, DepartmentsChangeActiveStatusCreateIsActiveErrorComponentDtoAttrEnum, DepartmentsChangeActiveStatusCreateIsActiveErrorComponentDtoCodeEnum, DepartmentsChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum, DepartmentsChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum, DepartmentsCreateColorErrorComponentDtoAttrEnum, DepartmentsCreateColorErrorComponentDtoCodeEnum, DepartmentsCreateNameErrorComponentDtoAttrEnum, DepartmentsCreateNameErrorComponentDtoCodeEnum, DepartmentsCreateNonFieldErrorsErrorComponentDtoAttrEnum, DepartmentsCreateNonFieldErrorsErrorComponentDtoCodeEnum, DepartmentsCreateWorkTypesErrorComponentDtoAttrEnum, DepartmentsCreateWorkTypesErrorComponentDtoCodeEnum, DepartmentsListIdErrorComponentDtoAttrEnum, DepartmentsListIdErrorComponentDtoCodeEnum, DepartmentsListIdInErrorComponentDtoAttrEnum, DepartmentsListIdInErrorComponentDtoCodeEnum, DepartmentsListNameErrorComponentDtoAttrEnum, DepartmentsListNameErrorComponentDtoCodeEnum, DepartmentsListNameInErrorComponentDtoAttrEnum, DepartmentsListNameInErrorComponentDtoCodeEnum, DepartmentsListWorkTypesIdInErrorComponentDtoAttrEnum, DepartmentsListWorkTypesIdInErrorComponentDtoCodeEnum, DepartmentsUpdateColorErrorComponentDtoAttrEnum, DepartmentsUpdateColorErrorComponentDtoCodeEnum, DepartmentsUpdateNameErrorComponentDtoAttrEnum, DepartmentsUpdateNameErrorComponentDtoCodeEnum, DepartmentsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, DepartmentsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, DepartmentsUpdateWorkTypesErrorComponentDtoAttrEnum, DepartmentsUpdateWorkTypesErrorComponentDtoCodeEnum, DismissalReasonsApiService, DismissalReasonsChangeActiveStatusCreateIsActiveErrorComponentDtoAttrEnum, DismissalReasonsChangeActiveStatusCreateIsActiveErrorComponentDtoCodeEnum, DismissalReasonsChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum, DismissalReasonsChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum, DismissalReasonsCreateIsActiveErrorComponentDtoAttrEnum, DismissalReasonsCreateIsActiveErrorComponentDtoCodeEnum, DismissalReasonsCreateNameErrorComponentDtoAttrEnum, DismissalReasonsCreateNameErrorComponentDtoCodeEnum, DismissalReasonsCreateNonFieldErrorsErrorComponentDtoAttrEnum, DismissalReasonsCreateNonFieldErrorsErrorComponentDtoCodeEnum, DismissalReasonsListIdErrorComponentDtoAttrEnum, DismissalReasonsListIdErrorComponentDtoCodeEnum, DismissalReasonsListIdInErrorComponentDtoAttrEnum, DismissalReasonsListIdInErrorComponentDtoCodeEnum, DismissalReasonsListNameErrorComponentDtoAttrEnum, DismissalReasonsListNameErrorComponentDtoCodeEnum, DismissalReasonsListNameInErrorComponentDtoAttrEnum, DismissalReasonsListNameInErrorComponentDtoCodeEnum, DismissalReasonsUpdateIsActiveErrorComponentDtoAttrEnum, DismissalReasonsUpdateIsActiveErrorComponentDtoCodeEnum, DismissalReasonsUpdateNameErrorComponentDtoAttrEnum, DismissalReasonsUpdateNameErrorComponentDtoCodeEnum, DismissalReasonsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, DismissalReasonsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, ErrorCode401EnumDto, ErrorCode403EnumDto, ErrorCode404EnumDto, ErrorCode405EnumDto, ErrorCode406EnumDto, ErrorCode415EnumDto, ErrorCode500EnumDto, ExportJobsApiService, ExportJobsStartCreateFileFormatErrorComponentDtoAttrEnum, ExportJobsStartCreateFileFormatErrorComponentDtoCodeEnum, ExportJobsStartCreateNonFieldErrorsErrorComponentDtoAttrEnum, ExportJobsStartCreateNonFieldErrorsErrorComponentDtoCodeEnum, ExportStatusEnumDto, ExportTasksApiService, ExportTasksStartCreateFileFormatErrorComponentDtoAttrEnum, ExportTasksStartCreateFileFormatErrorComponentDtoCodeEnum, ExportTasksStartCreateNonFieldErrorsErrorComponentDtoAttrEnum, ExportTasksStartCreateNonFieldErrorsErrorComponentDtoCodeEnum, ExportUserPeriodsApiService, ExportUserPeriodsStartCreateFileFormatErrorComponentDtoAttrEnum, ExportUserPeriodsStartCreateFileFormatErrorComponentDtoCodeEnum, ExportUserPeriodsStartCreateNonFieldErrorsErrorComponentDtoAttrEnum, ExportUserPeriodsStartCreateNonFieldErrorsErrorComponentDtoCodeEnum, ExportUsersApiService, ExportUsersStartCreateFileFormatErrorComponentDtoAttrEnum, ExportUsersStartCreateFileFormatErrorComponentDtoCodeEnum, ExportUsersStartCreateNonFieldErrorsErrorComponentDtoAttrEnum, ExportUsersStartCreateNonFieldErrorsErrorComponentDtoCodeEnum, FileFormatEnumDto, GroupEnumDto, JiraClientApiService, JiraClientCreateProjectCreateInstanceErrorComponentDtoAttrEnum, JiraClientCreateProjectCreateInstanceErrorComponentDtoCodeEnum, JiraClientCreateProjectCreateLeadErrorComponentDtoAttrEnum, JiraClientCreateProjectCreateLeadErrorComponentDtoCodeEnum, JiraClientCreateProjectCreateNonFieldErrorsErrorComponentDtoAttrEnum, JiraClientCreateProjectCreateNonFieldErrorsErrorComponentDtoCodeEnum, JiraClientCreateProjectCreateProjectNameErrorComponentDtoAttrEnum, JiraClientCreateProjectCreateProjectNameErrorComponentDtoCodeEnum, JiraInstancesApiService, JobTypeEnumDto, JobsApiService, JobsBillableChartListBilledByErrorComponentDtoAttrEnum, JobsBillableChartListBilledByErrorComponentDtoCodeEnum, JobsBillableChartListBilledByInErrorComponentDtoAttrEnum, JobsBillableChartListBilledByInErrorComponentDtoCodeEnum, JobsBillableChartListBranchErrorComponentDtoAttrEnum, JobsBillableChartListBranchErrorComponentDtoCodeEnum, JobsBillableChartListBranchInErrorComponentDtoAttrEnum, JobsBillableChartListBranchInErrorComponentDtoCodeEnum, JobsBillableChartListCreatedByErrorComponentDtoAttrEnum, JobsBillableChartListCreatedByErrorComponentDtoCodeEnum, JobsBillableChartListCreatedByInErrorComponentDtoAttrEnum, JobsBillableChartListCreatedByInErrorComponentDtoCodeEnum, JobsBillableChartListDateGteErrorComponentDtoAttrEnum, JobsBillableChartListDateGteErrorComponentDtoCodeEnum, JobsBillableChartListDateLteErrorComponentDtoAttrEnum, JobsBillableChartListDateLteErrorComponentDtoCodeEnum, JobsBillableChartListIdErrorComponentDtoAttrEnum, JobsBillableChartListIdErrorComponentDtoCodeEnum, JobsBillableChartListIdInErrorComponentDtoAttrEnum, JobsBillableChartListIdInErrorComponentDtoCodeEnum, JobsBillableChartListTaskErrorComponentDtoAttrEnum, JobsBillableChartListTaskErrorComponentDtoCodeEnum, JobsBillableChartListTaskInErrorComponentDtoAttrEnum, JobsBillableChartListTaskInErrorComponentDtoCodeEnum, JobsBillableChartListTaskProjectClientErrorComponentDtoAttrEnum, JobsBillableChartListTaskProjectClientErrorComponentDtoCodeEnum, JobsBillableChartListTaskProjectClientInErrorComponentDtoAttrEnum, JobsBillableChartListTaskProjectClientInErrorComponentDtoCodeEnum, JobsBillableChartListTaskProjectErrorComponentDtoAttrEnum, JobsBillableChartListTaskProjectErrorComponentDtoCodeEnum, JobsBillableChartListTaskProjectInErrorComponentDtoAttrEnum, JobsBillableChartListTaskProjectInErrorComponentDtoCodeEnum, JobsBillableChartListTimeSpanErrorComponentDtoAttrEnum, JobsBillableChartListTimeSpanErrorComponentDtoCodeEnum, JobsBillableChartListTypeErrorComponentDtoAttrEnum, JobsBillableChartListTypeErrorComponentDtoCodeEnum, JobsBillableChartListTypeInErrorComponentDtoAttrEnum, JobsBillableChartListTypeInErrorComponentDtoCodeEnum, JobsBillableChartListUpdatedByErrorComponentDtoAttrEnum, JobsBillableChartListUpdatedByErrorComponentDtoCodeEnum, JobsBillableChartListUpdatedByInErrorComponentDtoAttrEnum, JobsBillableChartListUpdatedByInErrorComponentDtoCodeEnum, JobsBillableChartListWorkTypeErrorComponentDtoAttrEnum, JobsBillableChartListWorkTypeErrorComponentDtoCodeEnum, JobsBillableChartListWorkTypeInErrorComponentDtoAttrEnum, JobsBillableChartListWorkTypeInErrorComponentDtoCodeEnum, JobsListBilledByErrorComponentDtoAttrEnum, JobsListBilledByErrorComponentDtoCodeEnum, JobsListBilledByInErrorComponentDtoAttrEnum, JobsListBilledByInErrorComponentDtoCodeEnum, JobsListBranchErrorComponentDtoAttrEnum, JobsListBranchErrorComponentDtoCodeEnum, JobsListBranchInErrorComponentDtoAttrEnum, JobsListBranchInErrorComponentDtoCodeEnum, JobsListCreatedByErrorComponentDtoAttrEnum, JobsListCreatedByErrorComponentDtoCodeEnum, JobsListCreatedByInErrorComponentDtoAttrEnum, JobsListCreatedByInErrorComponentDtoCodeEnum, JobsListDateGteErrorComponentDtoAttrEnum, JobsListDateGteErrorComponentDtoCodeEnum, JobsListDateLteErrorComponentDtoAttrEnum, JobsListDateLteErrorComponentDtoCodeEnum, JobsListIdErrorComponentDtoAttrEnum, JobsListIdErrorComponentDtoCodeEnum, JobsListIdInErrorComponentDtoAttrEnum, JobsListIdInErrorComponentDtoCodeEnum, JobsListTaskErrorComponentDtoAttrEnum, JobsListTaskErrorComponentDtoCodeEnum, JobsListTaskInErrorComponentDtoAttrEnum, JobsListTaskInErrorComponentDtoCodeEnum, JobsListTaskProjectClientErrorComponentDtoAttrEnum, JobsListTaskProjectClientErrorComponentDtoCodeEnum, JobsListTaskProjectClientInErrorComponentDtoAttrEnum, JobsListTaskProjectClientInErrorComponentDtoCodeEnum, JobsListTaskProjectErrorComponentDtoAttrEnum, JobsListTaskProjectErrorComponentDtoCodeEnum, JobsListTaskProjectInErrorComponentDtoAttrEnum, JobsListTaskProjectInErrorComponentDtoCodeEnum, JobsListTypeErrorComponentDtoAttrEnum, JobsListTypeErrorComponentDtoCodeEnum, JobsListTypeInErrorComponentDtoAttrEnum, JobsListTypeInErrorComponentDtoCodeEnum, JobsListUpdatedByErrorComponentDtoAttrEnum, JobsListUpdatedByErrorComponentDtoCodeEnum, JobsListUpdatedByInErrorComponentDtoAttrEnum, JobsListUpdatedByInErrorComponentDtoCodeEnum, JobsListWorkTypeErrorComponentDtoAttrEnum, JobsListWorkTypeErrorComponentDtoCodeEnum, JobsListWorkTypeInErrorComponentDtoAttrEnum, JobsListWorkTypeInErrorComponentDtoCodeEnum, JobsProductionChartListBilledByErrorComponentDtoAttrEnum, JobsProductionChartListBilledByErrorComponentDtoCodeEnum, JobsProductionChartListBilledByInErrorComponentDtoAttrEnum, JobsProductionChartListBilledByInErrorComponentDtoCodeEnum, JobsProductionChartListBranchErrorComponentDtoAttrEnum, JobsProductionChartListBranchErrorComponentDtoCodeEnum, JobsProductionChartListBranchInErrorComponentDtoAttrEnum, JobsProductionChartListBranchInErrorComponentDtoCodeEnum, JobsProductionChartListCreatedByErrorComponentDtoAttrEnum, JobsProductionChartListCreatedByErrorComponentDtoCodeEnum, JobsProductionChartListCreatedByInErrorComponentDtoAttrEnum, JobsProductionChartListCreatedByInErrorComponentDtoCodeEnum, JobsProductionChartListDateGteErrorComponentDtoAttrEnum, JobsProductionChartListDateGteErrorComponentDtoCodeEnum, JobsProductionChartListDateLteErrorComponentDtoAttrEnum, JobsProductionChartListDateLteErrorComponentDtoCodeEnum, JobsProductionChartListIdErrorComponentDtoAttrEnum, JobsProductionChartListIdErrorComponentDtoCodeEnum, JobsProductionChartListIdInErrorComponentDtoAttrEnum, JobsProductionChartListIdInErrorComponentDtoCodeEnum, JobsProductionChartListTaskErrorComponentDtoAttrEnum, JobsProductionChartListTaskErrorComponentDtoCodeEnum, JobsProductionChartListTaskInErrorComponentDtoAttrEnum, JobsProductionChartListTaskInErrorComponentDtoCodeEnum, JobsProductionChartListTaskProjectClientErrorComponentDtoAttrEnum, JobsProductionChartListTaskProjectClientErrorComponentDtoCodeEnum, JobsProductionChartListTaskProjectClientInErrorComponentDtoAttrEnum, JobsProductionChartListTaskProjectClientInErrorComponentDtoCodeEnum, JobsProductionChartListTaskProjectErrorComponentDtoAttrEnum, JobsProductionChartListTaskProjectErrorComponentDtoCodeEnum, JobsProductionChartListTaskProjectInErrorComponentDtoAttrEnum, JobsProductionChartListTaskProjectInErrorComponentDtoCodeEnum, JobsProductionChartListTimeSpanErrorComponentDtoAttrEnum, JobsProductionChartListTimeSpanErrorComponentDtoCodeEnum, JobsProductionChartListTypeErrorComponentDtoAttrEnum, JobsProductionChartListTypeErrorComponentDtoCodeEnum, JobsProductionChartListTypeInErrorComponentDtoAttrEnum, JobsProductionChartListTypeInErrorComponentDtoCodeEnum, JobsProductionChartListUpdatedByErrorComponentDtoAttrEnum, JobsProductionChartListUpdatedByErrorComponentDtoCodeEnum, JobsProductionChartListUpdatedByInErrorComponentDtoAttrEnum, JobsProductionChartListUpdatedByInErrorComponentDtoCodeEnum, JobsProductionChartListWorkTypeErrorComponentDtoAttrEnum, JobsProductionChartListWorkTypeErrorComponentDtoCodeEnum, JobsProductionChartListWorkTypeInErrorComponentDtoAttrEnum, JobsProductionChartListWorkTypeInErrorComponentDtoCodeEnum, LocationsApiService, LocationsCreateIconErrorComponentDtoAttrEnum, LocationsCreateIconErrorComponentDtoCodeEnum, LocationsCreateNameErrorComponentDtoAttrEnum, LocationsCreateNameErrorComponentDtoCodeEnum, LocationsCreateNonFieldErrorsErrorComponentDtoAttrEnum, LocationsCreateNonFieldErrorsErrorComponentDtoCodeEnum, LocationsCreateTimezoneErrorComponentDtoAttrEnum, LocationsCreateTimezoneErrorComponentDtoCodeEnum, LocationsListIdErrorComponentDtoAttrEnum, LocationsListIdErrorComponentDtoCodeEnum, LocationsListIdInErrorComponentDtoAttrEnum, LocationsListIdInErrorComponentDtoCodeEnum, LocationsListNameErrorComponentDtoAttrEnum, LocationsListNameErrorComponentDtoCodeEnum, LocationsListNameInErrorComponentDtoAttrEnum, LocationsListNameInErrorComponentDtoCodeEnum, LocationsListTimezoneErrorComponentDtoAttrEnum, LocationsListTimezoneErrorComponentDtoCodeEnum, LocationsListTimezoneInErrorComponentDtoAttrEnum, LocationsListTimezoneInErrorComponentDtoCodeEnum, LocationsUpdateIconErrorComponentDtoAttrEnum, LocationsUpdateIconErrorComponentDtoCodeEnum, LocationsUpdateNameErrorComponentDtoAttrEnum, LocationsUpdateNameErrorComponentDtoCodeEnum, LocationsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, LocationsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, LocationsUpdateTimezoneErrorComponentDtoAttrEnum, LocationsUpdateTimezoneErrorComponentDtoCodeEnum, NotificationTypeEnumDto, NotificationsApiService, NotificationsListCreatedGtErrorComponentDtoAttrEnum, NotificationsListCreatedGtErrorComponentDtoCodeEnum, NotificationsListCreatedGteErrorComponentDtoAttrEnum, NotificationsListCreatedGteErrorComponentDtoCodeEnum, NotificationsListCreatedLtErrorComponentDtoAttrEnum, NotificationsListCreatedLtErrorComponentDtoCodeEnum, NotificationsListCreatedLteErrorComponentDtoAttrEnum, NotificationsListCreatedLteErrorComponentDtoCodeEnum, NotificationsListIdErrorComponentDtoAttrEnum, NotificationsListIdErrorComponentDtoCodeEnum, NotificationsListIdGtErrorComponentDtoAttrEnum, NotificationsListIdGtErrorComponentDtoCodeEnum, NotificationsListIdGteErrorComponentDtoAttrEnum, NotificationsListIdGteErrorComponentDtoCodeEnum, NotificationsListIdInErrorComponentDtoAttrEnum, NotificationsListIdInErrorComponentDtoCodeEnum, NotificationsListIdLtErrorComponentDtoAttrEnum, NotificationsListIdLtErrorComponentDtoCodeEnum, NotificationsListIdLteErrorComponentDtoAttrEnum, NotificationsListIdLteErrorComponentDtoCodeEnum, NotificationsListTypeErrorComponentDtoAttrEnum, NotificationsListTypeErrorComponentDtoCodeEnum, NotificationsListTypeInErrorComponentDtoAttrEnum, NotificationsListTypeInErrorComponentDtoCodeEnum, ParseErrorCodeEnumDto, PeriodModelEnumDto, PeriodTypeEnumDto, PermissionDataApiService, PermissionEnumDto, PriorityEnumDto, ProfileApiService, ProfileUpdateAvatarErrorComponentDtoAttrEnum, ProfileUpdateAvatarErrorComponentDtoCodeEnum, ProfileUpdateBirthdayErrorComponentDtoAttrEnum, ProfileUpdateBirthdayErrorComponentDtoCodeEnum, ProfileUpdateCreatedByErrorComponentDtoAttrEnum, ProfileUpdateCreatedByErrorComponentDtoCodeEnum, ProfileUpdateFirstNameErrorComponentDtoAttrEnum, ProfileUpdateFirstNameErrorComponentDtoCodeEnum, ProfileUpdateGithubUsernameErrorComponentDtoAttrEnum, ProfileUpdateGithubUsernameErrorComponentDtoCodeEnum, ProfileUpdateHomePhoneErrorComponentDtoAttrEnum, ProfileUpdateHomePhoneErrorComponentDtoCodeEnum, ProfileUpdateLastNameErrorComponentDtoAttrEnum, ProfileUpdateLastNameErrorComponentDtoCodeEnum, ProfileUpdateLocationErrorComponentDtoAttrEnum, ProfileUpdateLocationErrorComponentDtoCodeEnum, ProfileUpdateMiddleNameErrorComponentDtoAttrEnum, ProfileUpdateMiddleNameErrorComponentDtoCodeEnum, ProfileUpdateNonFieldErrorsErrorComponentDtoAttrEnum, ProfileUpdateNonFieldErrorsErrorComponentDtoCodeEnum, ProfileUpdateOfficePhoneErrorComponentDtoAttrEnum, ProfileUpdateOfficePhoneErrorComponentDtoCodeEnum, ProfileUpdatePersonalEmailErrorComponentDtoAttrEnum, ProfileUpdatePersonalEmailErrorComponentDtoCodeEnum, ProfileUpdatePersonalPhoneErrorComponentDtoAttrEnum, ProfileUpdatePersonalPhoneErrorComponentDtoCodeEnum, ProfileUpdateSkypeErrorComponentDtoAttrEnum, ProfileUpdateSkypeErrorComponentDtoCodeEnum, ProfileUpdateSlackIdErrorComponentDtoAttrEnum, ProfileUpdateSlackIdErrorComponentDtoCodeEnum, ProfileUpdateTimezoneErrorComponentDtoAttrEnum, ProfileUpdateTimezoneErrorComponentDtoCodeEnum, ProfileUpdateUpdatedByErrorComponentDtoAttrEnum, ProfileUpdateUpdatedByErrorComponentDtoCodeEnum, ProjectNotesApiService, ProjectNotesListIdErrorComponentDtoAttrEnum, ProjectNotesListIdErrorComponentDtoCodeEnum, ProjectNotesListIdInErrorComponentDtoAttrEnum, ProjectNotesListIdInErrorComponentDtoCodeEnum, ProjectNotesListProjectErrorComponentDtoAttrEnum, ProjectNotesListProjectErrorComponentDtoCodeEnum, ProjectNotesListProjectInErrorComponentDtoAttrEnum, ProjectNotesListProjectInErrorComponentDtoCodeEnum, ProjectPrioritiesApiService, ProjectPrioritiesListColorErrorComponentDtoAttrEnum, ProjectPrioritiesListColorErrorComponentDtoCodeEnum, ProjectPrioritiesListColorInErrorComponentDtoAttrEnum, ProjectPrioritiesListColorInErrorComponentDtoCodeEnum, ProjectPrioritiesListIdErrorComponentDtoAttrEnum, ProjectPrioritiesListIdErrorComponentDtoCodeEnum, ProjectPrioritiesListIdInErrorComponentDtoAttrEnum, ProjectPrioritiesListIdInErrorComponentDtoCodeEnum, ProjectPrioritiesListNameErrorComponentDtoAttrEnum, ProjectPrioritiesListNameErrorComponentDtoCodeEnum, ProjectPrioritiesListNameInErrorComponentDtoAttrEnum, ProjectPrioritiesListNameInErrorComponentDtoCodeEnum, ProjectStatusEnumDto, ProjectsApiService, ProjectsListClientContactErrorComponentDtoAttrEnum, ProjectsListClientContactErrorComponentDtoCodeEnum, ProjectsListClientContactInErrorComponentDtoAttrEnum, ProjectsListClientContactInErrorComponentDtoCodeEnum, ProjectsListClientErrorComponentDtoAttrEnum, ProjectsListClientErrorComponentDtoCodeEnum, ProjectsListClientInErrorComponentDtoAttrEnum, ProjectsListClientInErrorComponentDtoCodeEnum, ProjectsListIdErrorComponentDtoAttrEnum, ProjectsListIdErrorComponentDtoCodeEnum, ProjectsListIdInErrorComponentDtoAttrEnum, ProjectsListIdInErrorComponentDtoCodeEnum, ProjectsListProjectManagersIdInErrorComponentDtoAttrEnum, ProjectsListProjectManagersIdInErrorComponentDtoCodeEnum, ProjectsListStatusErrorComponentDtoAttrEnum, ProjectsListStatusErrorComponentDtoCodeEnum, ProjectsListStatusInErrorComponentDtoAttrEnum, ProjectsListStatusInErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListClientContactErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListClientContactErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListClientContactInErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListClientContactInErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListClientErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListClientErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListClientInErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListClientInErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListIdErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListIdErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListIdInErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListIdInErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListProjectManagersIdInErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListProjectManagersIdInErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListStatusErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListStatusErrorComponentDtoCodeEnum, ProjectsWithMonthStatsListStatusInErrorComponentDtoAttrEnum, ProjectsWithMonthStatsListStatusInErrorComponentDtoCodeEnum, ProjectsWithStatsListClientContactErrorComponentDtoAttrEnum, ProjectsWithStatsListClientContactErrorComponentDtoCodeEnum, ProjectsWithStatsListClientContactInErrorComponentDtoAttrEnum, ProjectsWithStatsListClientContactInErrorComponentDtoCodeEnum, ProjectsWithStatsListClientErrorComponentDtoAttrEnum, ProjectsWithStatsListClientErrorComponentDtoCodeEnum, ProjectsWithStatsListClientInErrorComponentDtoAttrEnum, ProjectsWithStatsListClientInErrorComponentDtoCodeEnum, ProjectsWithStatsListIdErrorComponentDtoAttrEnum, ProjectsWithStatsListIdErrorComponentDtoCodeEnum, ProjectsWithStatsListIdInErrorComponentDtoAttrEnum, ProjectsWithStatsListIdInErrorComponentDtoCodeEnum, ProjectsWithStatsListProjectManagersIdInErrorComponentDtoAttrEnum, ProjectsWithStatsListProjectManagersIdInErrorComponentDtoCodeEnum, ProjectsWithStatsListStatusErrorComponentDtoAttrEnum, ProjectsWithStatsListStatusErrorComponentDtoCodeEnum, ProjectsWithStatsListStatusInErrorComponentDtoAttrEnum, ProjectsWithStatsListStatusInErrorComponentDtoCodeEnum, RolesApiService, RolesCreateNameErrorComponentDtoAttrEnum, RolesCreateNameErrorComponentDtoCodeEnum, RolesCreateNonFieldErrorsErrorComponentDtoAttrEnum, RolesCreateNonFieldErrorsErrorComponentDtoCodeEnum, RolesCreatePermissionsINDEXNonFieldErrorsErrorComponentDtoAttrEnum, RolesCreatePermissionsINDEXNonFieldErrorsErrorComponentDtoCodeEnum, RolesCreatePermissionsINDEXPermissionErrorComponentDtoAttrEnum, RolesCreatePermissionsINDEXPermissionErrorComponentDtoCodeEnum, RolesCreatePermissionsINDEXScopeErrorComponentDtoAttrEnum, RolesCreatePermissionsINDEXScopeErrorComponentDtoCodeEnum, RolesCreatePermissionsNonFieldErrorsErrorComponentDtoAttrEnum, RolesCreatePermissionsNonFieldErrorsErrorComponentDtoCodeEnum, RolesListIdErrorComponentDtoAttrEnum, RolesListIdErrorComponentDtoCodeEnum, RolesListIdInErrorComponentDtoAttrEnum, RolesListIdInErrorComponentDtoCodeEnum, RolesListPermissionsPermissionErrorComponentDtoAttrEnum, RolesListPermissionsPermissionErrorComponentDtoCodeEnum, RolesListPermissionsPermissionInErrorComponentDtoAttrEnum, RolesListPermissionsPermissionInErrorComponentDtoCodeEnum, RolesListPermissionsScopeErrorComponentDtoAttrEnum, RolesListPermissionsScopeErrorComponentDtoCodeEnum, RolesListPermissionsScopeInErrorComponentDtoAttrEnum, RolesListPermissionsScopeInErrorComponentDtoCodeEnum, RolesUpdateNameErrorComponentDtoAttrEnum, RolesUpdateNameErrorComponentDtoCodeEnum, RolesUpdateNonFieldErrorsErrorComponentDtoAttrEnum, RolesUpdateNonFieldErrorsErrorComponentDtoCodeEnum, RolesUpdatePermissionsINDEXNonFieldErrorsErrorComponentDtoAttrEnum, RolesUpdatePermissionsINDEXNonFieldErrorsErrorComponentDtoCodeEnum, RolesUpdatePermissionsINDEXPermissionErrorComponentDtoAttrEnum, RolesUpdatePermissionsINDEXPermissionErrorComponentDtoCodeEnum, RolesUpdatePermissionsINDEXScopeErrorComponentDtoAttrEnum, RolesUpdatePermissionsINDEXScopeErrorComponentDtoCodeEnum, RolesUpdatePermissionsNonFieldErrorsErrorComponentDtoAttrEnum, RolesUpdatePermissionsNonFieldErrorsErrorComponentDtoCodeEnum, S3ApiService, S3GetParamsCreateConfigErrorComponentDtoAttrEnum, S3GetParamsCreateConfigErrorComponentDtoCodeEnum, S3GetParamsCreateContentLengthErrorComponentDtoAttrEnum, S3GetParamsCreateContentLengthErrorComponentDtoCodeEnum, S3GetParamsCreateContentTypeErrorComponentDtoAttrEnum, S3GetParamsCreateContentTypeErrorComponentDtoCodeEnum, S3GetParamsCreateFilenameErrorComponentDtoAttrEnum, S3GetParamsCreateFilenameErrorComponentDtoCodeEnum, S3GetParamsCreateNonFieldErrorsErrorComponentDtoAttrEnum, S3GetParamsCreateNonFieldErrorsErrorComponentDtoCodeEnum, ScopeEnumDto, SearchPeriodsApiService, SearchPeriodsListBranchInErrorComponentDtoAttrEnum, SearchPeriodsListBranchInErrorComponentDtoCodeEnum, SearchPeriodsListPeriodOverlapErrorComponentDtoAttrEnum, SearchPeriodsListPeriodOverlapErrorComponentDtoCodeEnum, SearchPeriodsListStatusInErrorComponentDtoAttrEnum, SearchPeriodsListStatusInErrorComponentDtoCodeEnum, SearchPeriodsListTypeInErrorComponentDtoAttrEnum, SearchPeriodsListTypeInErrorComponentDtoCodeEnum, SearchPeriodsListUserBranchInErrorComponentDtoAttrEnum, SearchPeriodsListUserBranchInErrorComponentDtoCodeEnum, SearchPeriodsListUserDepartmentInErrorComponentDtoAttrEnum, SearchPeriodsListUserDepartmentInErrorComponentDtoCodeEnum, SearchPeriodsListUserInErrorComponentDtoAttrEnum, SearchPeriodsListUserInErrorComponentDtoCodeEnum, SearchPeriodsListUserStatusInErrorComponentDtoAttrEnum, SearchPeriodsListUserStatusInErrorComponentDtoCodeEnum, SearchPeriodsListUserSuperviseesInErrorComponentDtoAttrEnum, SearchPeriodsListUserSuperviseesInErrorComponentDtoCodeEnum, SearchPeriodsListUserSupervisorsInErrorComponentDtoAttrEnum, SearchPeriodsListUserSupervisorsInErrorComponentDtoCodeEnum, SearchPeriodsListUserWorkTypeInErrorComponentDtoAttrEnum, SearchPeriodsListUserWorkTypeInErrorComponentDtoCodeEnum, ServerErrorEnumDto, SsoApiService, SsoCodeExchangeCreateCodeErrorComponentDtoAttrEnum, SsoCodeExchangeCreateCodeErrorComponentDtoCodeEnum, SsoCodeExchangeCreateNonFieldErrorsErrorComponentDtoAttrEnum, SsoCodeExchangeCreateNonFieldErrorsErrorComponentDtoCodeEnum, SsoCodeExchangeCreateRedirectUriErrorComponentDtoAttrEnum, SsoCodeExchangeCreateRedirectUriErrorComponentDtoCodeEnum, SsoDebugCreateEmailErrorComponentDtoAttrEnum, SsoDebugCreateEmailErrorComponentDtoCodeEnum, SsoDebugCreateNonFieldErrorsErrorComponentDtoAttrEnum, SsoDebugCreateNonFieldErrorsErrorComponentDtoCodeEnum, SsoStartCreateNonFieldErrorsErrorComponentDtoAttrEnum, SsoStartCreateNonFieldErrorsErrorComponentDtoCodeEnum, SsoStartCreateRedirectUriErrorComponentDtoAttrEnum, SsoStartCreateRedirectUriErrorComponentDtoCodeEnum, StateEnumDto, TasksApiService, TasksListAssigneeErrorComponentDtoAttrEnum, TasksListAssigneeErrorComponentDtoCodeEnum, TasksListAssigneeInErrorComponentDtoAttrEnum, TasksListAssigneeInErrorComponentDtoCodeEnum, TasksListComponentErrorComponentDtoAttrEnum, TasksListComponentErrorComponentDtoCodeEnum, TasksListComponentInErrorComponentDtoAttrEnum, TasksListComponentInErrorComponentDtoCodeEnum, TasksListCreatedByErrorComponentDtoAttrEnum, TasksListCreatedByErrorComponentDtoCodeEnum, TasksListCreatedByInErrorComponentDtoAttrEnum, TasksListCreatedByInErrorComponentDtoCodeEnum, TasksListIdErrorComponentDtoAttrEnum, TasksListIdErrorComponentDtoCodeEnum, TasksListIdInErrorComponentDtoAttrEnum, TasksListIdInErrorComponentDtoCodeEnum, TasksListPriorityErrorComponentDtoAttrEnum, TasksListPriorityErrorComponentDtoCodeEnum, TasksListPriorityInErrorComponentDtoAttrEnum, TasksListPriorityInErrorComponentDtoCodeEnum, TasksListProjectClientErrorComponentDtoAttrEnum, TasksListProjectClientErrorComponentDtoCodeEnum, TasksListProjectClientInErrorComponentDtoAttrEnum, TasksListProjectClientInErrorComponentDtoCodeEnum, TasksListProjectErrorComponentDtoAttrEnum, TasksListProjectErrorComponentDtoCodeEnum, TasksListProjectInErrorComponentDtoAttrEnum, TasksListProjectInErrorComponentDtoCodeEnum, TasksListSprintErrorComponentDtoAttrEnum, TasksListSprintErrorComponentDtoCodeEnum, TasksListSprintInErrorComponentDtoAttrEnum, TasksListSprintInErrorComponentDtoCodeEnum, TasksListStatusErrorComponentDtoAttrEnum, TasksListStatusErrorComponentDtoCodeEnum, TasksListStatusInErrorComponentDtoAttrEnum, TasksListStatusInErrorComponentDtoCodeEnum, TasksListUpdatedByErrorComponentDtoAttrEnum, TasksListUpdatedByErrorComponentDtoCodeEnum, TasksListUpdatedByInErrorComponentDtoAttrEnum, TasksListUpdatedByInErrorComponentDtoCodeEnum, TasksStatusesRetrieveAssigneeErrorComponentDtoAttrEnum, TasksStatusesRetrieveAssigneeErrorComponentDtoCodeEnum, TasksStatusesRetrieveAssigneeInErrorComponentDtoAttrEnum, TasksStatusesRetrieveAssigneeInErrorComponentDtoCodeEnum, TasksStatusesRetrieveComponentErrorComponentDtoAttrEnum, TasksStatusesRetrieveComponentErrorComponentDtoCodeEnum, TasksStatusesRetrieveComponentInErrorComponentDtoAttrEnum, TasksStatusesRetrieveComponentInErrorComponentDtoCodeEnum, TasksStatusesRetrieveCreatedByErrorComponentDtoAttrEnum, TasksStatusesRetrieveCreatedByErrorComponentDtoCodeEnum, TasksStatusesRetrieveCreatedByInErrorComponentDtoAttrEnum, TasksStatusesRetrieveCreatedByInErrorComponentDtoCodeEnum, TasksStatusesRetrieveIdErrorComponentDtoAttrEnum, TasksStatusesRetrieveIdErrorComponentDtoCodeEnum, TasksStatusesRetrieveIdInErrorComponentDtoAttrEnum, TasksStatusesRetrieveIdInErrorComponentDtoCodeEnum, TasksStatusesRetrievePriorityErrorComponentDtoAttrEnum, TasksStatusesRetrievePriorityErrorComponentDtoCodeEnum, TasksStatusesRetrievePriorityInErrorComponentDtoAttrEnum, TasksStatusesRetrievePriorityInErrorComponentDtoCodeEnum, TasksStatusesRetrieveProjectClientErrorComponentDtoAttrEnum, TasksStatusesRetrieveProjectClientErrorComponentDtoCodeEnum, TasksStatusesRetrieveProjectClientInErrorComponentDtoAttrEnum, TasksStatusesRetrieveProjectClientInErrorComponentDtoCodeEnum, TasksStatusesRetrieveProjectErrorComponentDtoAttrEnum, TasksStatusesRetrieveProjectErrorComponentDtoCodeEnum, TasksStatusesRetrieveProjectInErrorComponentDtoAttrEnum, TasksStatusesRetrieveProjectInErrorComponentDtoCodeEnum, TasksStatusesRetrieveSprintErrorComponentDtoAttrEnum, TasksStatusesRetrieveSprintErrorComponentDtoCodeEnum, TasksStatusesRetrieveSprintInErrorComponentDtoAttrEnum, TasksStatusesRetrieveSprintInErrorComponentDtoCodeEnum, TasksStatusesRetrieveStatusErrorComponentDtoAttrEnum, TasksStatusesRetrieveStatusErrorComponentDtoCodeEnum, TasksStatusesRetrieveStatusInErrorComponentDtoAttrEnum, TasksStatusesRetrieveStatusInErrorComponentDtoCodeEnum, TasksStatusesRetrieveUpdatedByErrorComponentDtoAttrEnum, TasksStatusesRetrieveUpdatedByErrorComponentDtoCodeEnum, TasksStatusesRetrieveUpdatedByInErrorComponentDtoAttrEnum, TasksStatusesRetrieveUpdatedByInErrorComponentDtoCodeEnum, TokenApiService, TokenRefreshCreateNonFieldErrorsErrorComponentDtoAttrEnum, TokenRefreshCreateNonFieldErrorsErrorComponentDtoCodeEnum, TokenRefreshCreateRefreshErrorComponentDtoAttrEnum, TokenRefreshCreateRefreshErrorComponentDtoCodeEnum, TokenVerifyCreateNonFieldErrorsErrorComponentDtoAttrEnum, TokenVerifyCreateNonFieldErrorsErrorComponentDtoCodeEnum, TokenVerifyCreateTokenErrorComponentDtoAttrEnum, TokenVerifyCreateTokenErrorComponentDtoCodeEnum, UserCapacitiesApiService, UserCapacitiesCalculateCapacityCreateBranchErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateBranchErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateCapacityErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateCapacityErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateDateErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateDateErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateDepartmentErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateDepartmentErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateNonFieldErrorsErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateUserErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateUserErrorComponentDtoCodeEnum, UserCapacitiesCalculateCapacityCreateWorkTypeErrorComponentDtoAttrEnum, UserCapacitiesCalculateCapacityCreateWorkTypeErrorComponentDtoCodeEnum, UserCapacitiesGetPeriodCapacityListDateGteErrorComponentDtoAttrEnum, UserCapacitiesGetPeriodCapacityListDateGteErrorComponentDtoCodeEnum, UserCapacitiesGetPeriodCapacityListDateLteErrorComponentDtoAttrEnum, UserCapacitiesGetPeriodCapacityListDateLteErrorComponentDtoCodeEnum, UserCapacitiesGetPeriodCapacityListObjectIdsErrorComponentDtoAttrEnum, UserCapacitiesGetPeriodCapacityListObjectIdsErrorComponentDtoCodeEnum, UserCapacitiesGetPeriodCapacityListPeriodTypeErrorComponentDtoAttrEnum, UserCapacitiesGetPeriodCapacityListPeriodTypeErrorComponentDtoCodeEnum, UserCapacitiesListBranchIdErrorComponentDtoAttrEnum, UserCapacitiesListBranchIdErrorComponentDtoCodeEnum, UserCapacitiesListBranchIdInErrorComponentDtoAttrEnum, UserCapacitiesListBranchIdInErrorComponentDtoCodeEnum, UserCapacitiesListDateGteErrorComponentDtoAttrEnum, UserCapacitiesListDateGteErrorComponentDtoCodeEnum, UserCapacitiesListDateLteErrorComponentDtoAttrEnum, UserCapacitiesListDateLteErrorComponentDtoCodeEnum, UserCapacitiesListDepartmentIdErrorComponentDtoAttrEnum, UserCapacitiesListDepartmentIdErrorComponentDtoCodeEnum, UserCapacitiesListDepartmentIdInErrorComponentDtoAttrEnum, UserCapacitiesListDepartmentIdInErrorComponentDtoCodeEnum, UserCapacitiesListIdErrorComponentDtoAttrEnum, UserCapacitiesListIdErrorComponentDtoCodeEnum, UserCapacitiesListIdInErrorComponentDtoAttrEnum, UserCapacitiesListIdInErrorComponentDtoCodeEnum, UserCapacitiesListUserIdErrorComponentDtoAttrEnum, UserCapacitiesListUserIdErrorComponentDtoCodeEnum, UserCapacitiesListUserIdInErrorComponentDtoAttrEnum, UserCapacitiesListUserIdInErrorComponentDtoCodeEnum, UserCapacitiesListWorkTypeIdErrorComponentDtoAttrEnum, UserCapacitiesListWorkTypeIdErrorComponentDtoCodeEnum, UserCapacitiesListWorkTypeIdInErrorComponentDtoAttrEnum, UserCapacitiesListWorkTypeIdInErrorComponentDtoCodeEnum, UserLoginsApiService, UserLoginsListBranchErrorComponentDtoAttrEnum, UserLoginsListBranchErrorComponentDtoCodeEnum, UserLoginsListBranchInErrorComponentDtoAttrEnum, UserLoginsListBranchInErrorComponentDtoCodeEnum, UserLoginsListDepartmentErrorComponentDtoAttrEnum, UserLoginsListDepartmentErrorComponentDtoCodeEnum, UserLoginsListDepartmentInErrorComponentDtoAttrEnum, UserLoginsListDepartmentInErrorComponentDtoCodeEnum, UserLoginsListIdErrorComponentDtoAttrEnum, UserLoginsListIdErrorComponentDtoCodeEnum, UserLoginsListIdInErrorComponentDtoAttrEnum, UserLoginsListIdInErrorComponentDtoCodeEnum, UserLoginsListRoleErrorComponentDtoAttrEnum, UserLoginsListRoleErrorComponentDtoCodeEnum, UserLoginsListRoleInErrorComponentDtoAttrEnum, UserLoginsListRoleInErrorComponentDtoCodeEnum, UserLoginsListWorkTypeErrorComponentDtoAttrEnum, UserLoginsListWorkTypeErrorComponentDtoCodeEnum, UserLoginsListWorkTypeInErrorComponentDtoAttrEnum, UserLoginsListWorkTypeInErrorComponentDtoCodeEnum, UserLoginsUpdateEmailErrorComponentDtoAttrEnum, UserLoginsUpdateEmailErrorComponentDtoCodeEnum, UserLoginsUpdateIsStaffErrorComponentDtoAttrEnum, UserLoginsUpdateIsStaffErrorComponentDtoCodeEnum, UserLoginsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, UserLoginsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, UserLoginsUpdateRoleErrorComponentDtoAttrEnum, UserLoginsUpdateRoleErrorComponentDtoCodeEnum, UserPeriodStatusEnumDto, UserPeriodTypeEnumDto, UserPeriodsApiService, UserPeriodsChangeStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserPeriodsChangeStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum, UserPeriodsChangeStatusCreateStatusErrorComponentDtoAttrEnum, UserPeriodsChangeStatusCreateStatusErrorComponentDtoCodeEnum, UserPeriodsCreateDescriptionErrorComponentDtoAttrEnum, UserPeriodsCreateDescriptionErrorComponentDtoCodeEnum, UserPeriodsCreateFileErrorComponentDtoAttrEnum, UserPeriodsCreateFileErrorComponentDtoCodeEnum, UserPeriodsCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserPeriodsCreateNonFieldErrorsErrorComponentDtoCodeEnum, UserPeriodsCreatePeriodEndErrorComponentDtoAttrEnum, UserPeriodsCreatePeriodEndErrorComponentDtoCodeEnum, UserPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoAttrEnum, UserPeriodsCreatePeriodNonFieldErrorsErrorComponentDtoCodeEnum, UserPeriodsCreatePeriodStartErrorComponentDtoAttrEnum, UserPeriodsCreatePeriodStartErrorComponentDtoCodeEnum, UserPeriodsCreateTypeErrorComponentDtoAttrEnum, UserPeriodsCreateTypeErrorComponentDtoCodeEnum, UserPeriodsCreateUserErrorComponentDtoAttrEnum, UserPeriodsCreateUserErrorComponentDtoCodeEnum, UserPeriodsListIdErrorComponentDtoAttrEnum, UserPeriodsListIdErrorComponentDtoCodeEnum, UserPeriodsListIdInErrorComponentDtoAttrEnum, UserPeriodsListIdInErrorComponentDtoCodeEnum, UserPeriodsListPeriodOverlapErrorComponentDtoAttrEnum, UserPeriodsListPeriodOverlapErrorComponentDtoCodeEnum, UserPeriodsListStatusErrorComponentDtoAttrEnum, UserPeriodsListStatusErrorComponentDtoCodeEnum, UserPeriodsListStatusInErrorComponentDtoAttrEnum, UserPeriodsListStatusInErrorComponentDtoCodeEnum, UserPeriodsListTypeErrorComponentDtoAttrEnum, UserPeriodsListTypeErrorComponentDtoCodeEnum, UserPeriodsListTypeInErrorComponentDtoAttrEnum, UserPeriodsListTypeInErrorComponentDtoCodeEnum, UserPeriodsListUserBranchIdInErrorComponentDtoAttrEnum, UserPeriodsListUserBranchIdInErrorComponentDtoCodeEnum, UserPeriodsListUserDepartmentIdInErrorComponentDtoAttrEnum, UserPeriodsListUserDepartmentIdInErrorComponentDtoCodeEnum, UserPeriodsListUserIdInErrorComponentDtoAttrEnum, UserPeriodsListUserIdInErrorComponentDtoCodeEnum, UserPeriodsListUserStatusErrorComponentDtoAttrEnum, UserPeriodsListUserStatusErrorComponentDtoCodeEnum, UserPeriodsListUserStatusInErrorComponentDtoAttrEnum, UserPeriodsListUserStatusInErrorComponentDtoCodeEnum, UserPeriodsListUserSuperviseesIdInErrorComponentDtoAttrEnum, UserPeriodsListUserSuperviseesIdInErrorComponentDtoCodeEnum, UserPeriodsListUserSupervisorsIdInErrorComponentDtoAttrEnum, UserPeriodsListUserSupervisorsIdInErrorComponentDtoCodeEnum, UserPeriodsListUserWorkTypeIdInErrorComponentDtoAttrEnum, UserPeriodsListUserWorkTypeIdInErrorComponentDtoCodeEnum, UserPeriodsUpdateDescriptionErrorComponentDtoAttrEnum, UserPeriodsUpdateDescriptionErrorComponentDtoCodeEnum, UserPeriodsUpdateFileErrorComponentDtoAttrEnum, UserPeriodsUpdateFileErrorComponentDtoCodeEnum, UserPeriodsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, UserPeriodsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, UserPeriodsUpdatePeriodEndErrorComponentDtoAttrEnum, UserPeriodsUpdatePeriodEndErrorComponentDtoCodeEnum, UserPeriodsUpdatePeriodNonFieldErrorsErrorComponentDtoAttrEnum, UserPeriodsUpdatePeriodNonFieldErrorsErrorComponentDtoCodeEnum, UserPeriodsUpdatePeriodStartErrorComponentDtoAttrEnum, UserPeriodsUpdatePeriodStartErrorComponentDtoCodeEnum, UserPeriodsUpdateTypeErrorComponentDtoAttrEnum, UserPeriodsUpdateTypeErrorComponentDtoCodeEnum, UserPeriodsUpdateUserErrorComponentDtoAttrEnum, UserPeriodsUpdateUserErrorComponentDtoCodeEnum, UserScoresApiService, UserScoresCreateCommentErrorComponentDtoAttrEnum, UserScoresCreateCommentErrorComponentDtoCodeEnum, UserScoresCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserScoresCreateNonFieldErrorsErrorComponentDtoCodeEnum, UserScoresCreateReceiverErrorComponentDtoAttrEnum, UserScoresCreateReceiverErrorComponentDtoCodeEnum, UserScoresCreateScoreErrorComponentDtoAttrEnum, UserScoresCreateScoreErrorComponentDtoCodeEnum, UserScoresListCommentIcontainsErrorComponentDtoAttrEnum, UserScoresListCommentIcontainsErrorComponentDtoCodeEnum, UserScoresListCreatedByErrorComponentDtoAttrEnum, UserScoresListCreatedByErrorComponentDtoCodeEnum, UserScoresListCreatedByInErrorComponentDtoAttrEnum, UserScoresListCreatedByInErrorComponentDtoCodeEnum, UserScoresListCreatedDateGteErrorComponentDtoAttrEnum, UserScoresListCreatedDateGteErrorComponentDtoCodeEnum, UserScoresListCreatedDateLteErrorComponentDtoAttrEnum, UserScoresListCreatedDateLteErrorComponentDtoCodeEnum, UserScoresListCreatedGteErrorComponentDtoAttrEnum, UserScoresListCreatedGteErrorComponentDtoCodeEnum, UserScoresListCreatedLteErrorComponentDtoAttrEnum, UserScoresListCreatedLteErrorComponentDtoCodeEnum, UserScoresListIdErrorComponentDtoAttrEnum, UserScoresListIdErrorComponentDtoCodeEnum, UserScoresListIdInErrorComponentDtoAttrEnum, UserScoresListIdInErrorComponentDtoCodeEnum, UserScoresListReceiverErrorComponentDtoAttrEnum, UserScoresListReceiverErrorComponentDtoCodeEnum, UserScoresListReceiverInErrorComponentDtoAttrEnum, UserScoresListReceiverInErrorComponentDtoCodeEnum, UserScoresListScoreErrorComponentDtoAttrEnum, UserScoresListScoreErrorComponentDtoCodeEnum, UserScoresListScoreInErrorComponentDtoAttrEnum, UserScoresListScoreInErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveCommentIcontainsErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveCommentIcontainsErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveCreatedByErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveCreatedByErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveCreatedByInErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveCreatedByInErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveCreatedDateGteErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveCreatedDateGteErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveCreatedDateLteErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveCreatedDateLteErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveCreatedGteErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveCreatedGteErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveCreatedLteErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveCreatedLteErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveIdErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveIdErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveIdInErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveIdInErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveReceiverErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveReceiverErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveReceiverInErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveReceiverInErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveScoreErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveScoreErrorComponentDtoCodeEnum, UserScoresTotalScoreRetrieveScoreInErrorComponentDtoAttrEnum, UserScoresTotalScoreRetrieveScoreInErrorComponentDtoCodeEnum, UserStatusEnumDto, UserTimezoneSettingApiService, UserTimezoneSettingCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserTimezoneSettingCreateNonFieldErrorsErrorComponentDtoCodeEnum, UserTimezoneSettingCreateOrderingErrorComponentDtoAttrEnum, UserTimezoneSettingCreateOrderingErrorComponentDtoCodeEnum, UserTimezoneSettingCreateUse12FormatErrorComponentDtoAttrEnum, UserTimezoneSettingCreateUse12FormatErrorComponentDtoCodeEnum, UserTimezoneSettingOrderingEnumDto, UserTimezonesApiService, UserTimezonesSaveAllCreateINDEXNameErrorComponentDtoAttrEnum, UserTimezonesSaveAllCreateINDEXNameErrorComponentDtoCodeEnum, UserTimezonesSaveAllCreateINDEXNonFieldErrorsErrorComponentDtoAttrEnum, UserTimezonesSaveAllCreateINDEXNonFieldErrorsErrorComponentDtoCodeEnum, UserTimezonesSaveAllCreateINDEXTimezoneErrorComponentDtoAttrEnum, UserTimezonesSaveAllCreateINDEXTimezoneErrorComponentDtoCodeEnum, UserTimezonesSaveAllCreateNonFieldErrorsErrorComponentDtoAttrEnum, UserTimezonesSaveAllCreateNonFieldErrorsErrorComponentDtoCodeEnum, UsersApiService, UsersCreateAvatarErrorComponentDtoAttrEnum, UsersCreateAvatarErrorComponentDtoCodeEnum, UsersCreateBirthdayErrorComponentDtoAttrEnum, UsersCreateBirthdayErrorComponentDtoCodeEnum, UsersCreateBranchErrorComponentDtoAttrEnum, UsersCreateBranchErrorComponentDtoCodeEnum, UsersCreateCreatedByErrorComponentDtoAttrEnum, UsersCreateCreatedByErrorComponentDtoCodeEnum, UsersCreateDepartmentErrorComponentDtoAttrEnum, UsersCreateDepartmentErrorComponentDtoCodeEnum, UsersCreateDismissalReasonsErrorComponentDtoAttrEnum, UsersCreateDismissalReasonsErrorComponentDtoCodeEnum, UsersCreateEmailErrorComponentDtoAttrEnum, UsersCreateEmailErrorComponentDtoCodeEnum, UsersCreateFirstNameErrorComponentDtoAttrEnum, UsersCreateFirstNameErrorComponentDtoCodeEnum, UsersCreateFirstWorkingDayByContractErrorComponentDtoAttrEnum, UsersCreateFirstWorkingDayByContractErrorComponentDtoCodeEnum, UsersCreateFirstWorkingDayErrorComponentDtoAttrEnum, UsersCreateFirstWorkingDayErrorComponentDtoCodeEnum, UsersCreateGithubUsernameErrorComponentDtoAttrEnum, UsersCreateGithubUsernameErrorComponentDtoCodeEnum, UsersCreateHomePhoneErrorComponentDtoAttrEnum, UsersCreateHomePhoneErrorComponentDtoCodeEnum, UsersCreateIsInternErrorComponentDtoAttrEnum, UsersCreateIsInternErrorComponentDtoCodeEnum, UsersCreateIsPartTimeErrorComponentDtoAttrEnum, UsersCreateIsPartTimeErrorComponentDtoCodeEnum, UsersCreateJiraAccountIdErrorComponentDtoAttrEnum, UsersCreateJiraAccountIdErrorComponentDtoCodeEnum, UsersCreateLastNameErrorComponentDtoAttrEnum, UsersCreateLastNameErrorComponentDtoCodeEnum, UsersCreateLastWorkingDayErrorComponentDtoAttrEnum, UsersCreateLastWorkingDayErrorComponentDtoCodeEnum, UsersCreateLocationErrorComponentDtoAttrEnum, UsersCreateLocationErrorComponentDtoCodeEnum, UsersCreateMiddleNameErrorComponentDtoAttrEnum, UsersCreateMiddleNameErrorComponentDtoCodeEnum, UsersCreateNonFieldErrorsErrorComponentDtoAttrEnum, UsersCreateNonFieldErrorsErrorComponentDtoCodeEnum, UsersCreateOfficePhoneErrorComponentDtoAttrEnum, UsersCreateOfficePhoneErrorComponentDtoCodeEnum, UsersCreateOnsiteErrorComponentDtoAttrEnum, UsersCreateOnsiteErrorComponentDtoCodeEnum, UsersCreatePersonalEmailErrorComponentDtoAttrEnum, UsersCreatePersonalEmailErrorComponentDtoCodeEnum, UsersCreatePersonalPhoneErrorComponentDtoAttrEnum, UsersCreatePersonalPhoneErrorComponentDtoCodeEnum, UsersCreateRecruitedByErrorComponentDtoAttrEnum, UsersCreateRecruitedByErrorComponentDtoCodeEnum, UsersCreateRoleErrorComponentDtoAttrEnum, UsersCreateRoleErrorComponentDtoCodeEnum, UsersCreateSkypeErrorComponentDtoAttrEnum, UsersCreateSkypeErrorComponentDtoCodeEnum, UsersCreateSlackIdErrorComponentDtoAttrEnum, UsersCreateSlackIdErrorComponentDtoCodeEnum, UsersCreateStatusErrorComponentDtoAttrEnum, UsersCreateStatusErrorComponentDtoCodeEnum, UsersCreateSuperviseesErrorComponentDtoAttrEnum, UsersCreateSuperviseesErrorComponentDtoCodeEnum, UsersCreateSupervisorsErrorComponentDtoAttrEnum, UsersCreateSupervisorsErrorComponentDtoCodeEnum, UsersCreateTimezoneErrorComponentDtoAttrEnum, UsersCreateTimezoneErrorComponentDtoCodeEnum, UsersCreateUpdatedByErrorComponentDtoAttrEnum, UsersCreateUpdatedByErrorComponentDtoCodeEnum, UsersCreateUtilizationPercentErrorComponentDtoAttrEnum, UsersCreateUtilizationPercentErrorComponentDtoCodeEnum, UsersCreateVendorErrorComponentDtoAttrEnum, UsersCreateVendorErrorComponentDtoCodeEnum, UsersCreateWorkTypeErrorComponentDtoAttrEnum, UsersCreateWorkTypeErrorComponentDtoCodeEnum, UsersListBranchErrorComponentDtoAttrEnum, UsersListBranchErrorComponentDtoCodeEnum, UsersListBranchInErrorComponentDtoAttrEnum, UsersListBranchInErrorComponentDtoCodeEnum, UsersListDepartmentErrorComponentDtoAttrEnum, UsersListDepartmentErrorComponentDtoCodeEnum, UsersListDepartmentInErrorComponentDtoAttrEnum, UsersListDepartmentInErrorComponentDtoCodeEnum, UsersListIdErrorComponentDtoAttrEnum, UsersListIdErrorComponentDtoCodeEnum, UsersListIdInErrorComponentDtoAttrEnum, UsersListIdInErrorComponentDtoCodeEnum, UsersListRoleErrorComponentDtoAttrEnum, UsersListRoleErrorComponentDtoCodeEnum, UsersListRoleInErrorComponentDtoAttrEnum, UsersListRoleInErrorComponentDtoCodeEnum, UsersListStatusErrorComponentDtoAttrEnum, UsersListStatusErrorComponentDtoCodeEnum, UsersListStatusInErrorComponentDtoAttrEnum, UsersListStatusInErrorComponentDtoCodeEnum, UsersListSuperviseesIdInErrorComponentDtoAttrEnum, UsersListSuperviseesIdInErrorComponentDtoCodeEnum, UsersListSupervisorsIdInErrorComponentDtoAttrEnum, UsersListSupervisorsIdInErrorComponentDtoCodeEnum, UsersListWorkTypeErrorComponentDtoAttrEnum, UsersListWorkTypeErrorComponentDtoCodeEnum, UsersListWorkTypeInErrorComponentDtoAttrEnum, UsersListWorkTypeInErrorComponentDtoCodeEnum, UsersUpdateAvatarErrorComponentDtoAttrEnum, UsersUpdateAvatarErrorComponentDtoCodeEnum, UsersUpdateBirthdayErrorComponentDtoAttrEnum, UsersUpdateBirthdayErrorComponentDtoCodeEnum, UsersUpdateBranchErrorComponentDtoAttrEnum, UsersUpdateBranchErrorComponentDtoCodeEnum, UsersUpdateCreatedByErrorComponentDtoAttrEnum, UsersUpdateCreatedByErrorComponentDtoCodeEnum, UsersUpdateDepartmentErrorComponentDtoAttrEnum, UsersUpdateDepartmentErrorComponentDtoCodeEnum, UsersUpdateDismissalReasonsErrorComponentDtoAttrEnum, UsersUpdateDismissalReasonsErrorComponentDtoCodeEnum, UsersUpdateEmailErrorComponentDtoAttrEnum, UsersUpdateEmailErrorComponentDtoCodeEnum, UsersUpdateFirstNameErrorComponentDtoAttrEnum, UsersUpdateFirstNameErrorComponentDtoCodeEnum, UsersUpdateFirstWorkingDayByContractErrorComponentDtoAttrEnum, UsersUpdateFirstWorkingDayByContractErrorComponentDtoCodeEnum, UsersUpdateFirstWorkingDayErrorComponentDtoAttrEnum, UsersUpdateFirstWorkingDayErrorComponentDtoCodeEnum, UsersUpdateGithubUsernameErrorComponentDtoAttrEnum, UsersUpdateGithubUsernameErrorComponentDtoCodeEnum, UsersUpdateHomePhoneErrorComponentDtoAttrEnum, UsersUpdateHomePhoneErrorComponentDtoCodeEnum, UsersUpdateIsInternErrorComponentDtoAttrEnum, UsersUpdateIsInternErrorComponentDtoCodeEnum, UsersUpdateIsPartTimeErrorComponentDtoAttrEnum, UsersUpdateIsPartTimeErrorComponentDtoCodeEnum, UsersUpdateJiraAccountIdErrorComponentDtoAttrEnum, UsersUpdateJiraAccountIdErrorComponentDtoCodeEnum, UsersUpdateLastNameErrorComponentDtoAttrEnum, UsersUpdateLastNameErrorComponentDtoCodeEnum, UsersUpdateLastWorkingDayErrorComponentDtoAttrEnum, UsersUpdateLastWorkingDayErrorComponentDtoCodeEnum, UsersUpdateLocationErrorComponentDtoAttrEnum, UsersUpdateLocationErrorComponentDtoCodeEnum, UsersUpdateMiddleNameErrorComponentDtoAttrEnum, UsersUpdateMiddleNameErrorComponentDtoCodeEnum, UsersUpdateNonFieldErrorsErrorComponentDtoAttrEnum, UsersUpdateNonFieldErrorsErrorComponentDtoCodeEnum, UsersUpdateOfficePhoneErrorComponentDtoAttrEnum, UsersUpdateOfficePhoneErrorComponentDtoCodeEnum, UsersUpdateOnsiteErrorComponentDtoAttrEnum, UsersUpdateOnsiteErrorComponentDtoCodeEnum, UsersUpdatePersonalEmailErrorComponentDtoAttrEnum, UsersUpdatePersonalEmailErrorComponentDtoCodeEnum, UsersUpdatePersonalPhoneErrorComponentDtoAttrEnum, UsersUpdatePersonalPhoneErrorComponentDtoCodeEnum, UsersUpdateRecruitedByErrorComponentDtoAttrEnum, UsersUpdateRecruitedByErrorComponentDtoCodeEnum, UsersUpdateRoleErrorComponentDtoAttrEnum, UsersUpdateRoleErrorComponentDtoCodeEnum, UsersUpdateSkypeErrorComponentDtoAttrEnum, UsersUpdateSkypeErrorComponentDtoCodeEnum, UsersUpdateSlackIdErrorComponentDtoAttrEnum, UsersUpdateSlackIdErrorComponentDtoCodeEnum, UsersUpdateStatusErrorComponentDtoAttrEnum, UsersUpdateStatusErrorComponentDtoCodeEnum, UsersUpdateSuperviseesErrorComponentDtoAttrEnum, UsersUpdateSuperviseesErrorComponentDtoCodeEnum, UsersUpdateSupervisorsErrorComponentDtoAttrEnum, UsersUpdateSupervisorsErrorComponentDtoCodeEnum, UsersUpdateTimezoneErrorComponentDtoAttrEnum, UsersUpdateTimezoneErrorComponentDtoCodeEnum, UsersUpdateUpdatedByErrorComponentDtoAttrEnum, UsersUpdateUpdatedByErrorComponentDtoCodeEnum, UsersUpdateUtilizationPercentErrorComponentDtoAttrEnum, UsersUpdateUtilizationPercentErrorComponentDtoCodeEnum, UsersUpdateVendorErrorComponentDtoAttrEnum, UsersUpdateVendorErrorComponentDtoCodeEnum, UsersUpdateWorkTypeErrorComponentDtoAttrEnum, UsersUpdateWorkTypeErrorComponentDtoCodeEnum, UsersUtilizationChartListBranchErrorComponentDtoAttrEnum, UsersUtilizationChartListBranchErrorComponentDtoCodeEnum, UsersUtilizationChartListBranchInErrorComponentDtoAttrEnum, UsersUtilizationChartListBranchInErrorComponentDtoCodeEnum, UsersUtilizationChartListDateGteErrorComponentDtoAttrEnum, UsersUtilizationChartListDateGteErrorComponentDtoCodeEnum, UsersUtilizationChartListDateLteErrorComponentDtoAttrEnum, UsersUtilizationChartListDateLteErrorComponentDtoCodeEnum, UsersUtilizationChartListDepartmentErrorComponentDtoAttrEnum, UsersUtilizationChartListDepartmentErrorComponentDtoCodeEnum, UsersUtilizationChartListDepartmentInErrorComponentDtoAttrEnum, UsersUtilizationChartListDepartmentInErrorComponentDtoCodeEnum, UsersUtilizationChartListIdErrorComponentDtoAttrEnum, UsersUtilizationChartListIdErrorComponentDtoCodeEnum, UsersUtilizationChartListIdInErrorComponentDtoAttrEnum, UsersUtilizationChartListIdInErrorComponentDtoCodeEnum, UsersUtilizationChartListIsTotalErrorComponentDtoAttrEnum, UsersUtilizationChartListIsTotalErrorComponentDtoCodeEnum, UsersUtilizationChartListRoleErrorComponentDtoAttrEnum, UsersUtilizationChartListRoleErrorComponentDtoCodeEnum, UsersUtilizationChartListRoleInErrorComponentDtoAttrEnum, UsersUtilizationChartListRoleInErrorComponentDtoCodeEnum, UsersUtilizationChartListStatusErrorComponentDtoAttrEnum, UsersUtilizationChartListStatusErrorComponentDtoCodeEnum, UsersUtilizationChartListStatusInErrorComponentDtoAttrEnum, UsersUtilizationChartListStatusInErrorComponentDtoCodeEnum, UsersUtilizationChartListSuperviseesIdInErrorComponentDtoAttrEnum, UsersUtilizationChartListSuperviseesIdInErrorComponentDtoCodeEnum, UsersUtilizationChartListSupervisorsIdInErrorComponentDtoAttrEnum, UsersUtilizationChartListSupervisorsIdInErrorComponentDtoCodeEnum, UsersUtilizationChartListTimeSpanErrorComponentDtoAttrEnum, UsersUtilizationChartListTimeSpanErrorComponentDtoCodeEnum, UsersUtilizationChartListWorkTypeErrorComponentDtoAttrEnum, UsersUtilizationChartListWorkTypeErrorComponentDtoCodeEnum, UsersUtilizationChartListWorkTypeInErrorComponentDtoAttrEnum, UsersUtilizationChartListWorkTypeInErrorComponentDtoCodeEnum, ValidationErrorEnumDto, VendorsApiService, VendorsCreateNameErrorComponentDtoAttrEnum, VendorsCreateNameErrorComponentDtoCodeEnum, VendorsCreateNonFieldErrorsErrorComponentDtoAttrEnum, VendorsCreateNonFieldErrorsErrorComponentDtoCodeEnum, VendorsListIdErrorComponentDtoAttrEnum, VendorsListIdErrorComponentDtoCodeEnum, VendorsListIdInErrorComponentDtoAttrEnum, VendorsListIdInErrorComponentDtoCodeEnum, VendorsUpdateNameErrorComponentDtoAttrEnum, VendorsUpdateNameErrorComponentDtoCodeEnum, VendorsUpdateNonFieldErrorsErrorComponentDtoAttrEnum, VendorsUpdateNonFieldErrorsErrorComponentDtoCodeEnum, WhoAmIApiService, WorkTypesApiService, WorkTypesChangeActiveStatusCreateIsActiveErrorComponentDtoAttrEnum, WorkTypesChangeActiveStatusCreateIsActiveErrorComponentDtoCodeEnum, WorkTypesChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoAttrEnum, WorkTypesChangeActiveStatusCreateNonFieldErrorsErrorComponentDtoCodeEnum, WorkTypesCreateDepartmentErrorComponentDtoAttrEnum, WorkTypesCreateDepartmentErrorComponentDtoCodeEnum, WorkTypesCreateNameErrorComponentDtoAttrEnum, WorkTypesCreateNameErrorComponentDtoCodeEnum, WorkTypesCreateNonFieldErrorsErrorComponentDtoAttrEnum, WorkTypesCreateNonFieldErrorsErrorComponentDtoCodeEnum, WorkTypesCreateParentErrorComponentDtoAttrEnum, WorkTypesCreateParentErrorComponentDtoCodeEnum, WorkTypesListDepartmentErrorComponentDtoAttrEnum, WorkTypesListDepartmentErrorComponentDtoCodeEnum, WorkTypesListDepartmentInErrorComponentDtoAttrEnum, WorkTypesListDepartmentInErrorComponentDtoCodeEnum, WorkTypesListIdErrorComponentDtoAttrEnum, WorkTypesListIdErrorComponentDtoCodeEnum, WorkTypesListIdInErrorComponentDtoAttrEnum, WorkTypesListIdInErrorComponentDtoCodeEnum, WorkTypesListParentErrorComponentDtoAttrEnum, WorkTypesListParentErrorComponentDtoCodeEnum, WorkTypesListParentInErrorComponentDtoAttrEnum, WorkTypesListParentInErrorComponentDtoCodeEnum, WorkTypesUpdateDepartmentErrorComponentDtoAttrEnum, WorkTypesUpdateDepartmentErrorComponentDtoCodeEnum, WorkTypesUpdateNameErrorComponentDtoAttrEnum, WorkTypesUpdateNameErrorComponentDtoCodeEnum, WorkTypesUpdateNonFieldErrorsErrorComponentDtoAttrEnum, WorkTypesUpdateNonFieldErrorsErrorComponentDtoCodeEnum, WorkTypesUpdateParentErrorComponentDtoAttrEnum, WorkTypesUpdateParentErrorComponentDtoCodeEnum };
|
|
28534
28982
|
//# sourceMappingURL=saritasa-crm-delmar-core-sdk.mjs.map
|