ch-api-client-typescript2 5.43.12 → 5.43.15
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/lib/api/specialty-types-api.d.ts +48 -0
- package/lib/api/specialty-types-api.d.ts.map +1 -1
- package/lib/api/specialty-types-api.js +75 -0
- package/lib/models/doctor-specialty-sub-document-model.d.ts +283 -0
- package/lib/models/doctor-specialty-sub-document-model.d.ts.map +1 -1
- package/lib/models/doctor-specialty-translation-item-document-model.d.ts +37 -0
- package/lib/models/doctor-specialty-translation-item-document-model.d.ts.map +1 -0
- package/lib/models/doctor-specialty-translation-item-document-model.js +15 -0
- package/lib/models/hospital-specialty-sub-document-model.d.ts +283 -0
- package/lib/models/hospital-specialty-sub-document-model.d.ts.map +1 -1
- package/lib/models/hospital-specialty-translation-item-document-model.d.ts +43 -0
- package/lib/models/hospital-specialty-translation-item-document-model.d.ts.map +1 -0
- package/lib/models/hospital-specialty-translation-item-document-model.js +15 -0
- package/lib/models/index.d.ts +4 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +4 -0
- package/lib/models/validate-specialty-names-by-specialty-type-command.d.ts +37 -0
- package/lib/models/validate-specialty-names-by-specialty-type-command.d.ts.map +1 -0
- package/lib/models/validate-specialty-names-by-specialty-type-command.js +15 -0
- package/lib/models/validate-specialty-names-result.d.ts +25 -0
- package/lib/models/validate-specialty-names-result.d.ts.map +1 -0
- package/lib/models/validate-specialty-names-result.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +4 -0
- package/src/api/specialty-types-api.ts +87 -0
- package/src/models/doctor-specialty-sub-document-model.ts +285 -0
- package/src/models/doctor-specialty-translation-item-document-model.ts +42 -0
- package/src/models/hospital-specialty-sub-document-model.ts +285 -0
- package/src/models/hospital-specialty-translation-item-document-model.ts +48 -0
- package/src/models/index.ts +4 -0
- package/src/models/validate-specialty-names-by-specialty-type-command.ts +42 -0
- package/src/models/validate-specialty-names-result.ts +30 -0
|
@@ -29,17 +29,57 @@ import { MediaType } from '../models';
|
|
|
29
29
|
// @ts-ignore
|
|
30
30
|
import { MediasModel } from '../models';
|
|
31
31
|
// @ts-ignore
|
|
32
|
+
import { ProblemDetails } from '../models';
|
|
33
|
+
// @ts-ignore
|
|
32
34
|
import { SpecialtyTypeModel } from '../models';
|
|
33
35
|
// @ts-ignore
|
|
34
36
|
import { SpecialtyTypesModel } from '../models';
|
|
35
37
|
// @ts-ignore
|
|
36
38
|
import { SpecialtyTypesSimpleModel } from '../models';
|
|
39
|
+
// @ts-ignore
|
|
40
|
+
import { ValidateSpecialtyNamesBySpecialtyTypeCommand } from '../models';
|
|
41
|
+
// @ts-ignore
|
|
42
|
+
import { ValidateSpecialtyNamesResult } from '../models';
|
|
37
43
|
/**
|
|
38
44
|
* SpecialtyTypesApi - axios parameter creator
|
|
39
45
|
* @export
|
|
40
46
|
*/
|
|
41
47
|
export const SpecialtyTypesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
42
48
|
return {
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @summary Returns only items that match specialtyTypeName among specialtyTypeName items <br> For curation page
|
|
52
|
+
* @param {ValidateSpecialtyNamesBySpecialtyTypeCommand} [validateSpecialtyNamesBySpecialtyTypeCommand]
|
|
53
|
+
* @param {*} [options] Override http request option.
|
|
54
|
+
* @throws {RequiredError}
|
|
55
|
+
*/
|
|
56
|
+
apiV2SpecialtytypesCurationsPost: async (validateSpecialtyNamesBySpecialtyTypeCommand?: ValidateSpecialtyNamesBySpecialtyTypeCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
57
|
+
const localVarPath = `/api/v2/specialtytypes/curations`;
|
|
58
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
59
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
60
|
+
let baseOptions;
|
|
61
|
+
if (configuration) {
|
|
62
|
+
baseOptions = configuration.baseOptions;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
66
|
+
const localVarHeaderParameter = {} as any;
|
|
67
|
+
const localVarQueryParameter = {} as any;
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
72
|
+
|
|
73
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
74
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
75
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
76
|
+
localVarRequestOptions.data = serializeDataIfNeeded(validateSpecialtyNamesBySpecialtyTypeCommand, localVarRequestOptions, configuration)
|
|
77
|
+
|
|
78
|
+
return {
|
|
79
|
+
url: toPathString(localVarUrlObj),
|
|
80
|
+
options: localVarRequestOptions,
|
|
81
|
+
};
|
|
82
|
+
},
|
|
43
83
|
/**
|
|
44
84
|
*
|
|
45
85
|
* @summary Get all Departments.
|
|
@@ -450,6 +490,17 @@ export const SpecialtyTypesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
450
490
|
export const SpecialtyTypesApiFp = function(configuration?: Configuration) {
|
|
451
491
|
const localVarAxiosParamCreator = SpecialtyTypesApiAxiosParamCreator(configuration)
|
|
452
492
|
return {
|
|
493
|
+
/**
|
|
494
|
+
*
|
|
495
|
+
* @summary Returns only items that match specialtyTypeName among specialtyTypeName items <br> For curation page
|
|
496
|
+
* @param {ValidateSpecialtyNamesBySpecialtyTypeCommand} [validateSpecialtyNamesBySpecialtyTypeCommand]
|
|
497
|
+
* @param {*} [options] Override http request option.
|
|
498
|
+
* @throws {RequiredError}
|
|
499
|
+
*/
|
|
500
|
+
async apiV2SpecialtytypesCurationsPost(validateSpecialtyNamesBySpecialtyTypeCommand?: ValidateSpecialtyNamesBySpecialtyTypeCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValidateSpecialtyNamesResult>> {
|
|
501
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2SpecialtytypesCurationsPost(validateSpecialtyNamesBySpecialtyTypeCommand, options);
|
|
502
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
503
|
+
},
|
|
453
504
|
/**
|
|
454
505
|
*
|
|
455
506
|
* @summary Get all Departments.
|
|
@@ -563,6 +614,16 @@ export const SpecialtyTypesApiFp = function(configuration?: Configuration) {
|
|
|
563
614
|
export const SpecialtyTypesApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
564
615
|
const localVarFp = SpecialtyTypesApiFp(configuration)
|
|
565
616
|
return {
|
|
617
|
+
/**
|
|
618
|
+
*
|
|
619
|
+
* @summary Returns only items that match specialtyTypeName among specialtyTypeName items <br> For curation page
|
|
620
|
+
* @param {ValidateSpecialtyNamesBySpecialtyTypeCommand} [validateSpecialtyNamesBySpecialtyTypeCommand]
|
|
621
|
+
* @param {*} [options] Override http request option.
|
|
622
|
+
* @throws {RequiredError}
|
|
623
|
+
*/
|
|
624
|
+
apiV2SpecialtytypesCurationsPost(validateSpecialtyNamesBySpecialtyTypeCommand?: ValidateSpecialtyNamesBySpecialtyTypeCommand, options?: any): AxiosPromise<ValidateSpecialtyNamesResult> {
|
|
625
|
+
return localVarFp.apiV2SpecialtytypesCurationsPost(validateSpecialtyNamesBySpecialtyTypeCommand, options).then((request) => request(axios, basePath));
|
|
626
|
+
},
|
|
566
627
|
/**
|
|
567
628
|
*
|
|
568
629
|
* @summary Get all Departments.
|
|
@@ -663,6 +724,20 @@ export const SpecialtyTypesApiFactory = function (configuration?: Configuration,
|
|
|
663
724
|
};
|
|
664
725
|
};
|
|
665
726
|
|
|
727
|
+
/**
|
|
728
|
+
* Request parameters for apiV2SpecialtytypesCurationsPost operation in SpecialtyTypesApi.
|
|
729
|
+
* @export
|
|
730
|
+
* @interface SpecialtyTypesApiApiV2SpecialtytypesCurationsPostRequest
|
|
731
|
+
*/
|
|
732
|
+
export interface SpecialtyTypesApiApiV2SpecialtytypesCurationsPostRequest {
|
|
733
|
+
/**
|
|
734
|
+
*
|
|
735
|
+
* @type {ValidateSpecialtyNamesBySpecialtyTypeCommand}
|
|
736
|
+
* @memberof SpecialtyTypesApiApiV2SpecialtytypesCurationsPost
|
|
737
|
+
*/
|
|
738
|
+
readonly validateSpecialtyNamesBySpecialtyTypeCommand?: ValidateSpecialtyNamesBySpecialtyTypeCommand
|
|
739
|
+
}
|
|
740
|
+
|
|
666
741
|
/**
|
|
667
742
|
* Request parameters for apiV2SpecialtytypesGet operation in SpecialtyTypesApi.
|
|
668
743
|
* @export
|
|
@@ -1013,6 +1088,18 @@ export interface SpecialtyTypesApiApiV2SpecialtytypesSpecialtyTypeIdMediasMediaI
|
|
|
1013
1088
|
* @extends {BaseAPI}
|
|
1014
1089
|
*/
|
|
1015
1090
|
export class SpecialtyTypesApi extends BaseAPI {
|
|
1091
|
+
/**
|
|
1092
|
+
*
|
|
1093
|
+
* @summary Returns only items that match specialtyTypeName among specialtyTypeName items <br> For curation page
|
|
1094
|
+
* @param {SpecialtyTypesApiApiV2SpecialtytypesCurationsPostRequest} requestParameters Request parameters.
|
|
1095
|
+
* @param {*} [options] Override http request option.
|
|
1096
|
+
* @throws {RequiredError}
|
|
1097
|
+
* @memberof SpecialtyTypesApi
|
|
1098
|
+
*/
|
|
1099
|
+
public apiV2SpecialtytypesCurationsPost(requestParameters: SpecialtyTypesApiApiV2SpecialtytypesCurationsPostRequest = {}, options?: AxiosRequestConfig) {
|
|
1100
|
+
return SpecialtyTypesApiFp(this.configuration).apiV2SpecialtytypesCurationsPost(requestParameters.validateSpecialtyNamesBySpecialtyTypeCommand, options).then((request) => request(this.axios, this.basePath));
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1016
1103
|
/**
|
|
1017
1104
|
*
|
|
1018
1105
|
* @summary Get all Departments.
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { DoctorSpecialtyTranslationItemDocumentModel } from './doctor-specialty-translation-item-document-model';
|
|
16
19
|
|
|
17
20
|
/**
|
|
18
21
|
*
|
|
@@ -20,6 +23,288 @@
|
|
|
20
23
|
* @interface DoctorSpecialtySubDocumentModel
|
|
21
24
|
*/
|
|
22
25
|
export interface DoctorSpecialtySubDocumentModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
29
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
30
|
+
*/
|
|
31
|
+
'en'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
35
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
36
|
+
*/
|
|
37
|
+
'ru'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
41
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
42
|
+
*/
|
|
43
|
+
'zh'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
47
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
48
|
+
*/
|
|
49
|
+
'es'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
53
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
54
|
+
*/
|
|
55
|
+
'id'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
59
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
60
|
+
*/
|
|
61
|
+
'pt'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
65
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
66
|
+
*/
|
|
67
|
+
'fr'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
71
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
72
|
+
*/
|
|
73
|
+
'vi'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
77
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
78
|
+
*/
|
|
79
|
+
'th'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
83
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
84
|
+
*/
|
|
85
|
+
'ar'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
89
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
90
|
+
*/
|
|
91
|
+
'ko'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
95
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
96
|
+
*/
|
|
97
|
+
'bg'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
101
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
102
|
+
*/
|
|
103
|
+
'cs'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
107
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
108
|
+
*/
|
|
109
|
+
'de'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
113
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
114
|
+
*/
|
|
115
|
+
'hi'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
119
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
120
|
+
*/
|
|
121
|
+
'hr'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
125
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
126
|
+
*/
|
|
127
|
+
'hu'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
128
|
+
/**
|
|
129
|
+
*
|
|
130
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
131
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
132
|
+
*/
|
|
133
|
+
'it'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
134
|
+
/**
|
|
135
|
+
*
|
|
136
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
137
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
138
|
+
*/
|
|
139
|
+
'ja'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
140
|
+
/**
|
|
141
|
+
*
|
|
142
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
143
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
144
|
+
*/
|
|
145
|
+
'kk'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
146
|
+
/**
|
|
147
|
+
*
|
|
148
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
149
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
150
|
+
*/
|
|
151
|
+
'ky'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
155
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
156
|
+
*/
|
|
157
|
+
'lo'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
158
|
+
/**
|
|
159
|
+
*
|
|
160
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
161
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
162
|
+
*/
|
|
163
|
+
'lt'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
164
|
+
/**
|
|
165
|
+
*
|
|
166
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
167
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
168
|
+
*/
|
|
169
|
+
'lv'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
170
|
+
/**
|
|
171
|
+
*
|
|
172
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
173
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
174
|
+
*/
|
|
175
|
+
'my'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
176
|
+
/**
|
|
177
|
+
*
|
|
178
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
179
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
180
|
+
*/
|
|
181
|
+
'nl'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
182
|
+
/**
|
|
183
|
+
*
|
|
184
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
185
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
186
|
+
*/
|
|
187
|
+
'pl'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
188
|
+
/**
|
|
189
|
+
*
|
|
190
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
191
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
192
|
+
*/
|
|
193
|
+
'ro'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
194
|
+
/**
|
|
195
|
+
*
|
|
196
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
197
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
198
|
+
*/
|
|
199
|
+
'sl'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
200
|
+
/**
|
|
201
|
+
*
|
|
202
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
203
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
204
|
+
*/
|
|
205
|
+
'sv'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
206
|
+
/**
|
|
207
|
+
*
|
|
208
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
209
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
210
|
+
*/
|
|
211
|
+
'sw'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
212
|
+
/**
|
|
213
|
+
*
|
|
214
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
215
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
216
|
+
*/
|
|
217
|
+
'tr'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
218
|
+
/**
|
|
219
|
+
*
|
|
220
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
221
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
222
|
+
*/
|
|
223
|
+
'uk'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
224
|
+
/**
|
|
225
|
+
*
|
|
226
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
227
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
228
|
+
*/
|
|
229
|
+
'uz'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
230
|
+
/**
|
|
231
|
+
*
|
|
232
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
233
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
234
|
+
*/
|
|
235
|
+
'bn'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
236
|
+
/**
|
|
237
|
+
*
|
|
238
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
239
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
240
|
+
*/
|
|
241
|
+
'az'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
242
|
+
/**
|
|
243
|
+
*
|
|
244
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
245
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
246
|
+
*/
|
|
247
|
+
'ka'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
248
|
+
/**
|
|
249
|
+
*
|
|
250
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
251
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
252
|
+
*/
|
|
253
|
+
'mn'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
254
|
+
/**
|
|
255
|
+
*
|
|
256
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
257
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
258
|
+
*/
|
|
259
|
+
'te'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
260
|
+
/**
|
|
261
|
+
*
|
|
262
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
263
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
264
|
+
*/
|
|
265
|
+
'kn'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
266
|
+
/**
|
|
267
|
+
*
|
|
268
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
269
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
270
|
+
*/
|
|
271
|
+
'ta'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
272
|
+
/**
|
|
273
|
+
*
|
|
274
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
275
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
276
|
+
*/
|
|
277
|
+
'ml'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
278
|
+
/**
|
|
279
|
+
*
|
|
280
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
281
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
282
|
+
*/
|
|
283
|
+
'mr'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
284
|
+
/**
|
|
285
|
+
*
|
|
286
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
287
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
288
|
+
*/
|
|
289
|
+
'pa'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
290
|
+
/**
|
|
291
|
+
*
|
|
292
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
293
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
294
|
+
*/
|
|
295
|
+
'gu'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
296
|
+
/**
|
|
297
|
+
*
|
|
298
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
299
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
300
|
+
*/
|
|
301
|
+
'ur'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
302
|
+
/**
|
|
303
|
+
*
|
|
304
|
+
* @type {DoctorSpecialtyTranslationItemDocumentModel}
|
|
305
|
+
* @memberof DoctorSpecialtySubDocumentModel
|
|
306
|
+
*/
|
|
307
|
+
'or'?: DoctorSpecialtyTranslationItemDocumentModel;
|
|
23
308
|
/**
|
|
24
309
|
*
|
|
25
310
|
* @type {string}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* CloudHospital Api
|
|
5
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2
|
|
8
|
+
* Contact: developer@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface DoctorSpecialtyTranslationItemDocumentModel
|
|
21
|
+
*/
|
|
22
|
+
export interface DoctorSpecialtyTranslationItemDocumentModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof DoctorSpecialtyTranslationItemDocumentModel
|
|
27
|
+
*/
|
|
28
|
+
'Slug'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof DoctorSpecialtyTranslationItemDocumentModel
|
|
33
|
+
*/
|
|
34
|
+
'Name'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof DoctorSpecialtyTranslationItemDocumentModel
|
|
39
|
+
*/
|
|
40
|
+
'SpecialtyTypeName'?: string | null;
|
|
41
|
+
}
|
|
42
|
+
|