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
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { HospitalSpecialtyTranslationItemDocumentModel } from './hospital-specialty-translation-item-document-model';
|
|
16
19
|
|
|
17
20
|
/**
|
|
18
21
|
*
|
|
@@ -20,6 +23,288 @@
|
|
|
20
23
|
* @interface HospitalSpecialtySubDocumentModel
|
|
21
24
|
*/
|
|
22
25
|
export interface HospitalSpecialtySubDocumentModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
29
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
30
|
+
*/
|
|
31
|
+
'en'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
35
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
36
|
+
*/
|
|
37
|
+
'ru'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
41
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
42
|
+
*/
|
|
43
|
+
'zh'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
47
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
48
|
+
*/
|
|
49
|
+
'es'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
53
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
54
|
+
*/
|
|
55
|
+
'id'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
59
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
60
|
+
*/
|
|
61
|
+
'pt'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
65
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
66
|
+
*/
|
|
67
|
+
'fr'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
71
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
72
|
+
*/
|
|
73
|
+
'vi'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
77
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
78
|
+
*/
|
|
79
|
+
'th'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
83
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
84
|
+
*/
|
|
85
|
+
'ar'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
89
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
90
|
+
*/
|
|
91
|
+
'ko'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
95
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
96
|
+
*/
|
|
97
|
+
'bg'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
101
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
102
|
+
*/
|
|
103
|
+
'cs'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
107
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
108
|
+
*/
|
|
109
|
+
'de'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
113
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
114
|
+
*/
|
|
115
|
+
'hi'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
119
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
120
|
+
*/
|
|
121
|
+
'hr'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
125
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
126
|
+
*/
|
|
127
|
+
'hu'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
128
|
+
/**
|
|
129
|
+
*
|
|
130
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
131
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
132
|
+
*/
|
|
133
|
+
'it'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
134
|
+
/**
|
|
135
|
+
*
|
|
136
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
137
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
138
|
+
*/
|
|
139
|
+
'ja'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
140
|
+
/**
|
|
141
|
+
*
|
|
142
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
143
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
144
|
+
*/
|
|
145
|
+
'kk'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
146
|
+
/**
|
|
147
|
+
*
|
|
148
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
149
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
150
|
+
*/
|
|
151
|
+
'ky'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
155
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
156
|
+
*/
|
|
157
|
+
'lo'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
158
|
+
/**
|
|
159
|
+
*
|
|
160
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
161
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
162
|
+
*/
|
|
163
|
+
'lt'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
164
|
+
/**
|
|
165
|
+
*
|
|
166
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
167
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
168
|
+
*/
|
|
169
|
+
'lv'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
170
|
+
/**
|
|
171
|
+
*
|
|
172
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
173
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
174
|
+
*/
|
|
175
|
+
'my'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
176
|
+
/**
|
|
177
|
+
*
|
|
178
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
179
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
180
|
+
*/
|
|
181
|
+
'nl'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
182
|
+
/**
|
|
183
|
+
*
|
|
184
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
185
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
186
|
+
*/
|
|
187
|
+
'pl'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
188
|
+
/**
|
|
189
|
+
*
|
|
190
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
191
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
192
|
+
*/
|
|
193
|
+
'ro'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
194
|
+
/**
|
|
195
|
+
*
|
|
196
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
197
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
198
|
+
*/
|
|
199
|
+
'sl'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
200
|
+
/**
|
|
201
|
+
*
|
|
202
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
203
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
204
|
+
*/
|
|
205
|
+
'sv'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
206
|
+
/**
|
|
207
|
+
*
|
|
208
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
209
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
210
|
+
*/
|
|
211
|
+
'sw'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
212
|
+
/**
|
|
213
|
+
*
|
|
214
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
215
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
216
|
+
*/
|
|
217
|
+
'tr'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
218
|
+
/**
|
|
219
|
+
*
|
|
220
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
221
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
222
|
+
*/
|
|
223
|
+
'uk'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
224
|
+
/**
|
|
225
|
+
*
|
|
226
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
227
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
228
|
+
*/
|
|
229
|
+
'uz'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
230
|
+
/**
|
|
231
|
+
*
|
|
232
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
233
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
234
|
+
*/
|
|
235
|
+
'bn'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
236
|
+
/**
|
|
237
|
+
*
|
|
238
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
239
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
240
|
+
*/
|
|
241
|
+
'az'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
242
|
+
/**
|
|
243
|
+
*
|
|
244
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
245
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
246
|
+
*/
|
|
247
|
+
'ka'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
248
|
+
/**
|
|
249
|
+
*
|
|
250
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
251
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
252
|
+
*/
|
|
253
|
+
'mn'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
254
|
+
/**
|
|
255
|
+
*
|
|
256
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
257
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
258
|
+
*/
|
|
259
|
+
'te'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
260
|
+
/**
|
|
261
|
+
*
|
|
262
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
263
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
264
|
+
*/
|
|
265
|
+
'kn'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
266
|
+
/**
|
|
267
|
+
*
|
|
268
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
269
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
270
|
+
*/
|
|
271
|
+
'ta'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
272
|
+
/**
|
|
273
|
+
*
|
|
274
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
275
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
276
|
+
*/
|
|
277
|
+
'ml'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
278
|
+
/**
|
|
279
|
+
*
|
|
280
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
281
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
282
|
+
*/
|
|
283
|
+
'mr'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
284
|
+
/**
|
|
285
|
+
*
|
|
286
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
287
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
288
|
+
*/
|
|
289
|
+
'pa'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
290
|
+
/**
|
|
291
|
+
*
|
|
292
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
293
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
294
|
+
*/
|
|
295
|
+
'gu'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
296
|
+
/**
|
|
297
|
+
*
|
|
298
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
299
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
300
|
+
*/
|
|
301
|
+
'ur'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
302
|
+
/**
|
|
303
|
+
*
|
|
304
|
+
* @type {HospitalSpecialtyTranslationItemDocumentModel}
|
|
305
|
+
* @memberof HospitalSpecialtySubDocumentModel
|
|
306
|
+
*/
|
|
307
|
+
'or'?: HospitalSpecialtyTranslationItemDocumentModel;
|
|
23
308
|
/**
|
|
24
309
|
*
|
|
25
310
|
* @type {string}
|
|
@@ -0,0 +1,48 @@
|
|
|
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 HospitalSpecialtyTranslationItemDocumentModel
|
|
21
|
+
*/
|
|
22
|
+
export interface HospitalSpecialtyTranslationItemDocumentModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof HospitalSpecialtyTranslationItemDocumentModel
|
|
27
|
+
*/
|
|
28
|
+
'Slug'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof HospitalSpecialtyTranslationItemDocumentModel
|
|
33
|
+
*/
|
|
34
|
+
'Name'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof HospitalSpecialtyTranslationItemDocumentModel
|
|
39
|
+
*/
|
|
40
|
+
'SpecialtyName'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof HospitalSpecialtyTranslationItemDocumentModel
|
|
45
|
+
*/
|
|
46
|
+
'SpecialtyTypeName'?: string | null;
|
|
47
|
+
}
|
|
48
|
+
|
package/src/models/index.ts
CHANGED
|
@@ -141,6 +141,7 @@ export * from './doctor-specialties-model';
|
|
|
141
141
|
export * from './doctor-specialty-item-model';
|
|
142
142
|
export * from './doctor-specialty-model';
|
|
143
143
|
export * from './doctor-specialty-sub-document-model';
|
|
144
|
+
export * from './doctor-specialty-translation-item-document-model';
|
|
144
145
|
export * from './doctors-model';
|
|
145
146
|
export * from './doctors-simple-model';
|
|
146
147
|
export * from './facebook-user-data-deletion-response-model';
|
|
@@ -219,6 +220,7 @@ export * from './hospital-specialty-item-model';
|
|
|
219
220
|
export * from './hospital-specialty-model';
|
|
220
221
|
export * from './hospital-specialty-simple-item-model';
|
|
221
222
|
export * from './hospital-specialty-sub-document-model';
|
|
223
|
+
export * from './hospital-specialty-translation-item-document-model';
|
|
222
224
|
export * from './hospital-sub-document-model';
|
|
223
225
|
export * from './hospital-tag-item-model';
|
|
224
226
|
export * from './hospital-tag-model';
|
|
@@ -365,6 +367,8 @@ export * from './user-language-model';
|
|
|
365
367
|
export * from './user-model';
|
|
366
368
|
export * from './user-property';
|
|
367
369
|
export * from './user-type';
|
|
370
|
+
export * from './validate-specialty-names-by-specialty-type-command';
|
|
371
|
+
export * from './validate-specialty-names-result';
|
|
368
372
|
export * from './vonage-user';
|
|
369
373
|
export * from './web-app-metadata-model';
|
|
370
374
|
export * from './working-day-item-model';
|
|
@@ -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 ValidateSpecialtyNamesBySpecialtyTypeCommand
|
|
21
|
+
*/
|
|
22
|
+
export interface ValidateSpecialtyNamesBySpecialtyTypeCommand {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof ValidateSpecialtyNamesBySpecialtyTypeCommand
|
|
27
|
+
*/
|
|
28
|
+
'languageCode'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ValidateSpecialtyNamesBySpecialtyTypeCommand
|
|
33
|
+
*/
|
|
34
|
+
'specialtyTypeName'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {Array<string>}
|
|
38
|
+
* @memberof ValidateSpecialtyNamesBySpecialtyTypeCommand
|
|
39
|
+
*/
|
|
40
|
+
'specialtyNames'?: Array<string> | null;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
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 ValidateSpecialtyNamesResult
|
|
21
|
+
*/
|
|
22
|
+
export interface ValidateSpecialtyNamesResult {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {Array<string>}
|
|
26
|
+
* @memberof ValidateSpecialtyNamesResult
|
|
27
|
+
*/
|
|
28
|
+
'specialtyNames'?: Array<string> | null;
|
|
29
|
+
}
|
|
30
|
+
|