ch-api-client-typescript2 5.6.0 → 5.6.3

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.
Files changed (84) hide show
  1. package/lib/api/hospitals-api.d.ts +148 -0
  2. package/lib/api/hospitals-api.d.ts.map +1 -1
  3. package/lib/api/hospitals-api.js +188 -0
  4. package/lib/models/appointment-option-model.d.ts +7 -1
  5. package/lib/models/appointment-option-model.d.ts.map +1 -1
  6. package/lib/models/bank-account-info-item-model.d.ts +73 -0
  7. package/lib/models/bank-account-info-item-model.d.ts.map +1 -0
  8. package/lib/models/bank-account-info-item-model.js +15 -0
  9. package/lib/models/bank-account-info-model.d.ts +73 -0
  10. package/lib/models/bank-account-info-model.d.ts.map +1 -0
  11. package/lib/models/bank-account-info-model.js +15 -0
  12. package/lib/models/bank-account-infos-model.d.ts +33 -0
  13. package/lib/models/bank-account-infos-model.d.ts.map +1 -0
  14. package/lib/models/bank-account-infos-model.js +15 -0
  15. package/lib/models/deal-document-model.d.ts +19 -0
  16. package/lib/models/deal-document-model.d.ts.map +1 -1
  17. package/lib/models/deal-model.d.ts +14 -0
  18. package/lib/models/deal-model.d.ts.map +1 -1
  19. package/lib/models/deal-package-item-model.d.ts +6 -0
  20. package/lib/models/deal-package-item-model.d.ts.map +1 -1
  21. package/lib/models/deal-package-model.d.ts +27 -0
  22. package/lib/models/deal-package-model.d.ts.map +1 -1
  23. package/lib/models/doctor-affiliation-item-model.d.ts +6 -0
  24. package/lib/models/doctor-affiliation-item-model.d.ts.map +1 -1
  25. package/lib/models/doctor-affiliation-model.d.ts +20 -0
  26. package/lib/models/doctor-affiliation-model.d.ts.map +1 -1
  27. package/lib/models/doctor-document-model.d.ts +19 -0
  28. package/lib/models/doctor-document-model.d.ts.map +1 -1
  29. package/lib/models/hospital-bank-account-info-document-model.d.ts +73 -0
  30. package/lib/models/hospital-bank-account-info-document-model.d.ts.map +1 -0
  31. package/lib/models/hospital-bank-account-info-document-model.js +15 -0
  32. package/lib/models/hospital-document-model.d.ts +19 -0
  33. package/lib/models/hospital-document-model.d.ts.map +1 -1
  34. package/lib/models/hospital-item-model.d.ts +13 -0
  35. package/lib/models/hospital-item-model.d.ts.map +1 -1
  36. package/lib/models/hospital-model.d.ts +20 -0
  37. package/lib/models/hospital-model.d.ts.map +1 -1
  38. package/lib/models/hospital-service-item-model.d.ts +6 -0
  39. package/lib/models/hospital-service-item-model.d.ts.map +1 -1
  40. package/lib/models/hospital-service-model.d.ts +27 -0
  41. package/lib/models/hospital-service-model.d.ts.map +1 -1
  42. package/lib/models/hospital-specialty-document-model.d.ts +26 -0
  43. package/lib/models/hospital-specialty-document-model.d.ts.map +1 -1
  44. package/lib/models/hospital-specialty-item-model.d.ts +6 -0
  45. package/lib/models/hospital-specialty-item-model.d.ts.map +1 -1
  46. package/lib/models/hospital-specialty-model.d.ts +27 -0
  47. package/lib/models/hospital-specialty-model.d.ts.map +1 -1
  48. package/lib/models/hospital-sub-document-model.d.ts +6 -0
  49. package/lib/models/hospital-sub-document-model.d.ts.map +1 -1
  50. package/lib/models/index.d.ts +5 -0
  51. package/lib/models/index.d.ts.map +1 -1
  52. package/lib/models/index.js +5 -0
  53. package/lib/models/payment-method.d.ts +23 -0
  54. package/lib/models/payment-method.d.ts.map +1 -0
  55. package/lib/models/payment-method.js +26 -0
  56. package/lib/models/service-document-model.d.ts +26 -0
  57. package/lib/models/service-document-model.d.ts.map +1 -1
  58. package/package.json +1 -1
  59. package/src/.openapi-generator/FILES +5 -0
  60. package/src/api/hospitals-api.ts +251 -0
  61. package/src/models/appointment-option-model.ts +7 -1
  62. package/src/models/bank-account-info-item-model.ts +78 -0
  63. package/src/models/bank-account-info-model.ts +78 -0
  64. package/src/models/bank-account-infos-model.ts +42 -0
  65. package/src/models/deal-document-model.ts +21 -0
  66. package/src/models/deal-model.ts +18 -0
  67. package/src/models/deal-package-item-model.ts +6 -0
  68. package/src/models/deal-package-model.ts +33 -0
  69. package/src/models/doctor-affiliation-item-model.ts +6 -0
  70. package/src/models/doctor-affiliation-model.ts +24 -0
  71. package/src/models/doctor-document-model.ts +21 -0
  72. package/src/models/hospital-bank-account-info-document-model.ts +78 -0
  73. package/src/models/hospital-document-model.ts +21 -0
  74. package/src/models/hospital-item-model.ts +15 -0
  75. package/src/models/hospital-model.ts +24 -0
  76. package/src/models/hospital-service-item-model.ts +6 -0
  77. package/src/models/hospital-service-model.ts +33 -0
  78. package/src/models/hospital-specialty-document-model.ts +30 -0
  79. package/src/models/hospital-specialty-item-model.ts +6 -0
  80. package/src/models/hospital-specialty-model.ts +33 -0
  81. package/src/models/hospital-sub-document-model.ts +6 -0
  82. package/src/models/index.ts +5 -0
  83. package/src/models/payment-method.ts +32 -0
  84. package/src/models/service-document-model.ts +30 -0
@@ -80,6 +80,12 @@ export interface DealPackageItemModel {
80
80
  * @memberof DealPackageItemModel
81
81
  */
82
82
  'hospitalSlug'?: string | null;
83
+ /**
84
+ *
85
+ * @type {string}
86
+ * @memberof DealPackageItemModel
87
+ */
88
+ 'appointmentCurrency'?: string | null;
83
89
  /**
84
90
  *
85
91
  * @type {string}
@@ -21,9 +21,18 @@ import { AppointmentOptionModel } from './appointment-option-model';
21
21
  import { AuditableEntityModel } from './auditable-entity-model';
22
22
  // May contain unused imports in some cases
23
23
  // @ts-ignore
24
+ import { BankAccountInfoModel } from './bank-account-info-model';
25
+ // May contain unused imports in some cases
26
+ // @ts-ignore
24
27
  import { FeatureModel } from './feature-model';
25
28
  // May contain unused imports in some cases
26
29
  // @ts-ignore
30
+ import { HospitalContactItemModel } from './hospital-contact-item-model';
31
+ // May contain unused imports in some cases
32
+ // @ts-ignore
33
+ import { PaymentMethod } from './payment-method';
34
+ // May contain unused imports in some cases
35
+ // @ts-ignore
27
36
  import { RefundPolicy } from './refund-policy';
28
37
 
29
38
  /**
@@ -80,6 +89,12 @@ export interface DealPackageModel {
80
89
  * @memberof DealPackageModel
81
90
  */
82
91
  'hospitalSlug'?: string | null;
92
+ /**
93
+ *
94
+ * @type {string}
95
+ * @memberof DealPackageModel
96
+ */
97
+ 'appointmentCurrency'?: string | null;
83
98
  /**
84
99
  *
85
100
  * @type {string}
@@ -134,5 +149,23 @@ export interface DealPackageModel {
134
149
  * @memberof DealPackageModel
135
150
  */
136
151
  'transfer'?: string | null;
152
+ /**
153
+ *
154
+ * @type {Array<HospitalContactItemModel>}
155
+ * @memberof DealPackageModel
156
+ */
157
+ 'hospitalContacts'?: Array<HospitalContactItemModel> | null;
158
+ /**
159
+ *
160
+ * @type {Array<BankAccountInfoModel>}
161
+ * @memberof DealPackageModel
162
+ */
163
+ 'hospitalBankAccountInfos'?: Array<BankAccountInfoModel> | null;
164
+ /**
165
+ *
166
+ * @type {Array<PaymentMethod>}
167
+ * @memberof DealPackageModel
168
+ */
169
+ 'hospitalPaymentMethods'?: Array<PaymentMethod> | null;
137
170
  }
138
171
 
@@ -77,6 +77,12 @@ export interface DoctorAffiliationItemModel {
77
77
  * @memberof DoctorAffiliationItemModel
78
78
  */
79
79
  'marketingType'?: MarketingType;
80
+ /**
81
+ *
82
+ * @type {string}
83
+ * @memberof DoctorAffiliationItemModel
84
+ */
85
+ 'appointmentCurrency'?: string | null;
80
86
  /**
81
87
  *
82
88
  * @type {string}
@@ -18,6 +18,9 @@
18
18
  import { AppointmentOptionModel } from './appointment-option-model';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
+ import { BankAccountInfoModel } from './bank-account-info-model';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
21
24
  import { DoctorLanguageModel } from './doctor-language-model';
22
25
  // May contain unused imports in some cases
23
26
  // @ts-ignore
@@ -40,6 +43,9 @@ import { MarketingType } from './marketing-type';
40
43
  // May contain unused imports in some cases
41
44
  // @ts-ignore
42
45
  import { MediaModel } from './media-model';
46
+ // May contain unused imports in some cases
47
+ // @ts-ignore
48
+ import { PaymentMethod } from './payment-method';
43
49
 
44
50
  /**
45
51
  *
@@ -89,6 +95,12 @@ export interface DoctorAffiliationModel {
89
95
  * @memberof DoctorAffiliationModel
90
96
  */
91
97
  'marketingType'?: MarketingType;
98
+ /**
99
+ *
100
+ * @type {string}
101
+ * @memberof DoctorAffiliationModel
102
+ */
103
+ 'appointmentCurrency'?: string | null;
92
104
  /**
93
105
  *
94
106
  * @type {string}
@@ -287,5 +299,17 @@ export interface DoctorAffiliationModel {
287
299
  * @memberof DoctorAffiliationModel
288
300
  */
289
301
  'hospitalContacts'?: Array<HospitalContactItemModel> | null;
302
+ /**
303
+ *
304
+ * @type {Array<BankAccountInfoModel>}
305
+ * @memberof DoctorAffiliationModel
306
+ */
307
+ 'hospitalBankAccountInfos'?: Array<BankAccountInfoModel> | null;
308
+ /**
309
+ *
310
+ * @type {Array<PaymentMethod>}
311
+ * @memberof DoctorAffiliationModel
312
+ */
313
+ 'hospitalPaymentMethods'?: Array<PaymentMethod> | null;
290
314
  }
291
315
 
@@ -27,6 +27,9 @@ import { DoctorSpecialtySubDocumentModel } from './doctor-specialty-sub-document
27
27
  import { FeatureDocumentModel } from './feature-document-model';
28
28
  // May contain unused imports in some cases
29
29
  // @ts-ignore
30
+ import { HospitalBankAccountInfoDocumentModel } from './hospital-bank-account-info-document-model';
31
+ // May contain unused imports in some cases
32
+ // @ts-ignore
30
33
  import { HospitalContactDocumentModel } from './hospital-contact-document-model';
31
34
  // May contain unused imports in some cases
32
35
  // @ts-ignore
@@ -377,12 +380,30 @@ export interface DoctorDocumentModel {
377
380
  * @memberof DoctorDocumentModel
378
381
  */
379
382
  'HospitalLocation'?: LocationDocumentModel;
383
+ /**
384
+ *
385
+ * @type {string}
386
+ * @memberof DoctorDocumentModel
387
+ */
388
+ 'AppointmentCurrency'?: string | null;
380
389
  /**
381
390
  *
382
391
  * @type {Array<HospitalContactDocumentModel>}
383
392
  * @memberof DoctorDocumentModel
384
393
  */
385
394
  'HospitalContacts'?: Array<HospitalContactDocumentModel> | null;
395
+ /**
396
+ *
397
+ * @type {Array<HospitalBankAccountInfoDocumentModel>}
398
+ * @memberof DoctorDocumentModel
399
+ */
400
+ 'HospitalBankAccountInfos'?: Array<HospitalBankAccountInfoDocumentModel> | null;
401
+ /**
402
+ *
403
+ * @type {Array<string>}
404
+ * @memberof DoctorDocumentModel
405
+ */
406
+ 'HospitalPaymentMethods'?: Array<string> | null;
386
407
  /**
387
408
  *
388
409
  * @type {AppointmentOptionDocumentModel}
@@ -0,0 +1,78 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
8
+ * Contact: hyounoosung@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 HospitalBankAccountInfoDocumentModel
21
+ */
22
+ export interface HospitalBankAccountInfoDocumentModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof HospitalBankAccountInfoDocumentModel
27
+ */
28
+ 'Id'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof HospitalBankAccountInfoDocumentModel
33
+ */
34
+ 'HospitalId'?: string | null;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof HospitalBankAccountInfoDocumentModel
39
+ */
40
+ 'Bank'?: string | null;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof HospitalBankAccountInfoDocumentModel
45
+ */
46
+ 'AccountNumber'?: string | null;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof HospitalBankAccountInfoDocumentModel
51
+ */
52
+ 'Depositor'?: string | null;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof HospitalBankAccountInfoDocumentModel
57
+ */
58
+ 'SwiftCode'?: string | null;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof HospitalBankAccountInfoDocumentModel
63
+ */
64
+ 'AdditionalNote'?: string | null;
65
+ /**
66
+ *
67
+ * @type {boolean}
68
+ * @memberof HospitalBankAccountInfoDocumentModel
69
+ */
70
+ 'IsEnabled'?: boolean;
71
+ /**
72
+ *
73
+ * @type {number}
74
+ * @memberof HospitalBankAccountInfoDocumentModel
75
+ */
76
+ 'Order'?: number;
77
+ }
78
+
@@ -30,6 +30,9 @@ import { FeatureDocumentModel } from './feature-document-model';
30
30
  import { GradeDocumentModel } from './grade-document-model';
31
31
  // May contain unused imports in some cases
32
32
  // @ts-ignore
33
+ import { HospitalBankAccountInfoDocumentModel } from './hospital-bank-account-info-document-model';
34
+ // May contain unused imports in some cases
35
+ // @ts-ignore
33
36
  import { HospitalContactDocumentModel } from './hospital-contact-document-model';
34
37
  // May contain unused imports in some cases
35
38
  // @ts-ignore
@@ -359,6 +362,12 @@ export interface HospitalDocumentModel {
359
362
  * @memberof HospitalDocumentModel
360
363
  */
361
364
  'MarketingType'?: string | null;
365
+ /**
366
+ *
367
+ * @type {string}
368
+ * @memberof HospitalDocumentModel
369
+ */
370
+ 'AppointmentCurrency'?: string | null;
362
371
  /**
363
372
  *
364
373
  * @type {string}
@@ -449,6 +458,18 @@ export interface HospitalDocumentModel {
449
458
  * @memberof HospitalDocumentModel
450
459
  */
451
460
  'Contacts'?: Array<HospitalContactDocumentModel> | null;
461
+ /**
462
+ *
463
+ * @type {Array<HospitalBankAccountInfoDocumentModel>}
464
+ * @memberof HospitalDocumentModel
465
+ */
466
+ 'BankAccountInfos'?: Array<HospitalBankAccountInfoDocumentModel> | null;
467
+ /**
468
+ *
469
+ * @type {Array<string>}
470
+ * @memberof HospitalDocumentModel
471
+ */
472
+ 'PaymentMethods'?: Array<string> | null;
452
473
  /**
453
474
  *
454
475
  * @type {FeatureDocumentModel}
@@ -40,6 +40,9 @@ import { MarketingType } from './marketing-type';
40
40
  // May contain unused imports in some cases
41
41
  // @ts-ignore
42
42
  import { MediaModel } from './media-model';
43
+ // May contain unused imports in some cases
44
+ // @ts-ignore
45
+ import { PaymentMethod } from './payment-method';
43
46
 
44
47
  /**
45
48
  *
@@ -125,6 +128,12 @@ export interface HospitalItemModel {
125
128
  * @memberof HospitalItemModel
126
129
  */
127
130
  'paymentEnabled'?: boolean;
131
+ /**
132
+ *
133
+ * @type {string}
134
+ * @memberof HospitalItemModel
135
+ */
136
+ 'appointmentCurrency'?: string | null;
128
137
  /**
129
138
  *
130
139
  * @type {string}
@@ -149,6 +158,12 @@ export interface HospitalItemModel {
149
158
  * @memberof HospitalItemModel
150
159
  */
151
160
  'appointmentOption'?: AppointmentOptionModel;
161
+ /**
162
+ *
163
+ * @type {Array<PaymentMethod>}
164
+ * @memberof HospitalItemModel
165
+ */
166
+ 'paymentMethods'?: Array<PaymentMethod> | null;
152
167
  /**
153
168
  *
154
169
  * @type {FeatureModel}
@@ -21,6 +21,9 @@ import { AppointmentOptionModel } from './appointment-option-model';
21
21
  import { AwardModel } from './award-model';
22
22
  // May contain unused imports in some cases
23
23
  // @ts-ignore
24
+ import { BankAccountInfoModel } from './bank-account-info-model';
25
+ // May contain unused imports in some cases
26
+ // @ts-ignore
24
27
  import { FeatureModel } from './feature-model';
25
28
  // May contain unused imports in some cases
26
29
  // @ts-ignore
@@ -63,6 +66,9 @@ import { MarketingType } from './marketing-type';
63
66
  import { MediaModel } from './media-model';
64
67
  // May contain unused imports in some cases
65
68
  // @ts-ignore
69
+ import { PaymentMethod } from './payment-method';
70
+ // May contain unused imports in some cases
71
+ // @ts-ignore
66
72
  import { SnsHandleModel } from './sns-handle-model';
67
73
  // May contain unused imports in some cases
68
74
  // @ts-ignore
@@ -152,6 +158,12 @@ export interface HospitalModel {
152
158
  * @memberof HospitalModel
153
159
  */
154
160
  'paymentEnabled'?: boolean;
161
+ /**
162
+ *
163
+ * @type {string}
164
+ * @memberof HospitalModel
165
+ */
166
+ 'appointmentCurrency'?: string | null;
155
167
  /**
156
168
  *
157
169
  * @type {string}
@@ -176,6 +188,12 @@ export interface HospitalModel {
176
188
  * @memberof HospitalModel
177
189
  */
178
190
  'appointmentOption'?: AppointmentOptionModel;
191
+ /**
192
+ *
193
+ * @type {Array<PaymentMethod>}
194
+ * @memberof HospitalModel
195
+ */
196
+ 'paymentMethods'?: Array<PaymentMethod> | null;
179
197
  /**
180
198
  *
181
199
  * @type {FeatureModel}
@@ -332,6 +350,12 @@ export interface HospitalModel {
332
350
  * @memberof HospitalModel
333
351
  */
334
352
  'contacts'?: Array<HospitalContactItemModel> | null;
353
+ /**
354
+ *
355
+ * @type {Array<BankAccountInfoModel>}
356
+ * @memberof HospitalModel
357
+ */
358
+ 'bankAccountInfos'?: Array<BankAccountInfoModel> | null;
335
359
  /**
336
360
  *
337
361
  * @type {HospitalConsultationOptionModel}
@@ -44,6 +44,12 @@ export interface HospitalServiceItemModel {
44
44
  * @memberof HospitalServiceItemModel
45
45
  */
46
46
  'languageCode'?: string | null;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof HospitalServiceItemModel
51
+ */
52
+ 'appointmentCurrency'?: string | null;
47
53
  /**
48
54
  *
49
55
  * @type {string}
@@ -21,15 +21,24 @@ import { AppointmentOptionModel } from './appointment-option-model';
21
21
  import { AuditableEntityModel } from './auditable-entity-model';
22
22
  // May contain unused imports in some cases
23
23
  // @ts-ignore
24
+ import { BankAccountInfoModel } from './bank-account-info-model';
25
+ // May contain unused imports in some cases
26
+ // @ts-ignore
24
27
  import { FeatureModel } from './feature-model';
25
28
  // May contain unused imports in some cases
26
29
  // @ts-ignore
30
+ import { HospitalContactItemModel } from './hospital-contact-item-model';
31
+ // May contain unused imports in some cases
32
+ // @ts-ignore
27
33
  import { LocalizedUrlModel } from './localized-url-model';
28
34
  // May contain unused imports in some cases
29
35
  // @ts-ignore
30
36
  import { MediaModel } from './media-model';
31
37
  // May contain unused imports in some cases
32
38
  // @ts-ignore
39
+ import { PaymentMethod } from './payment-method';
40
+ // May contain unused imports in some cases
41
+ // @ts-ignore
33
42
  import { Procedure } from './procedure';
34
43
 
35
44
  /**
@@ -50,6 +59,12 @@ export interface HospitalServiceModel {
50
59
  * @memberof HospitalServiceModel
51
60
  */
52
61
  'languageCode'?: string | null;
62
+ /**
63
+ *
64
+ * @type {string}
65
+ * @memberof HospitalServiceModel
66
+ */
67
+ 'appointmentCurrency'?: string | null;
53
68
  /**
54
69
  *
55
70
  * @type {string}
@@ -218,5 +233,23 @@ export interface HospitalServiceModel {
218
233
  * @memberof HospitalServiceModel
219
234
  */
220
235
  'medias'?: Array<MediaModel> | null;
236
+ /**
237
+ *
238
+ * @type {Array<HospitalContactItemModel>}
239
+ * @memberof HospitalServiceModel
240
+ */
241
+ 'hospitalContacts'?: Array<HospitalContactItemModel> | null;
242
+ /**
243
+ *
244
+ * @type {Array<BankAccountInfoModel>}
245
+ * @memberof HospitalServiceModel
246
+ */
247
+ 'hospitalBankAccountInfos'?: Array<BankAccountInfoModel> | null;
248
+ /**
249
+ *
250
+ * @type {Array<PaymentMethod>}
251
+ * @memberof HospitalServiceModel
252
+ */
253
+ 'hospitalPaymentMethods'?: Array<PaymentMethod> | null;
221
254
  }
222
255
 
@@ -21,6 +21,12 @@ import { AppointmentOptionDocumentModel } from './appointment-option-document-mo
21
21
  import { FeatureDocumentModel } from './feature-document-model';
22
22
  // May contain unused imports in some cases
23
23
  // @ts-ignore
24
+ import { HospitalBankAccountInfoDocumentModel } from './hospital-bank-account-info-document-model';
25
+ // May contain unused imports in some cases
26
+ // @ts-ignore
27
+ import { HospitalContactDocumentModel } from './hospital-contact-document-model';
28
+ // May contain unused imports in some cases
29
+ // @ts-ignore
24
30
  import { HospitalSubDocumentModel } from './hospital-sub-document-model';
25
31
  // May contain unused imports in some cases
26
32
  // @ts-ignore
@@ -323,6 +329,30 @@ export interface HospitalSpecialtyDocumentModel {
323
329
  * @memberof HospitalSpecialtyDocumentModel
324
330
  */
325
331
  'Order'?: number;
332
+ /**
333
+ *
334
+ * @type {string}
335
+ * @memberof HospitalSpecialtyDocumentModel
336
+ */
337
+ 'AppointmentCurrency'?: string | null;
338
+ /**
339
+ *
340
+ * @type {Array<HospitalContactDocumentModel>}
341
+ * @memberof HospitalSpecialtyDocumentModel
342
+ */
343
+ 'HospitalContacts'?: Array<HospitalContactDocumentModel> | null;
344
+ /**
345
+ *
346
+ * @type {Array<HospitalBankAccountInfoDocumentModel>}
347
+ * @memberof HospitalSpecialtyDocumentModel
348
+ */
349
+ 'HospitalBankAccountInfos'?: Array<HospitalBankAccountInfoDocumentModel> | null;
350
+ /**
351
+ *
352
+ * @type {Array<string>}
353
+ * @memberof HospitalSpecialtyDocumentModel
354
+ */
355
+ 'HospitalPaymentMethods'?: Array<string> | null;
326
356
  /**
327
357
  *
328
358
  * @type {Array<MediaDocumentModel>}
@@ -98,6 +98,12 @@ export interface HospitalSpecialtyItemModel {
98
98
  * @memberof HospitalSpecialtyItemModel
99
99
  */
100
100
  'servicesCount'?: number;
101
+ /**
102
+ *
103
+ * @type {string}
104
+ * @memberof HospitalSpecialtyItemModel
105
+ */
106
+ 'appointmentCurrency'?: string | null;
101
107
  /**
102
108
  *
103
109
  * @type {string}
@@ -21,9 +21,15 @@ import { AppointmentOptionModel } from './appointment-option-model';
21
21
  import { AuditableEntityModel } from './auditable-entity-model';
22
22
  // May contain unused imports in some cases
23
23
  // @ts-ignore
24
+ import { BankAccountInfoModel } from './bank-account-info-model';
25
+ // May contain unused imports in some cases
26
+ // @ts-ignore
24
27
  import { FeatureModel } from './feature-model';
25
28
  // May contain unused imports in some cases
26
29
  // @ts-ignore
30
+ import { HospitalContactItemModel } from './hospital-contact-item-model';
31
+ // May contain unused imports in some cases
32
+ // @ts-ignore
27
33
  import { LocalizedUrlModel } from './localized-url-model';
28
34
  // May contain unused imports in some cases
29
35
  // @ts-ignore
@@ -31,6 +37,9 @@ import { MarketingType } from './marketing-type';
31
37
  // May contain unused imports in some cases
32
38
  // @ts-ignore
33
39
  import { MediaModel } from './media-model';
40
+ // May contain unused imports in some cases
41
+ // @ts-ignore
42
+ import { PaymentMethod } from './payment-method';
34
43
 
35
44
  /**
36
45
  *
@@ -104,6 +113,12 @@ export interface HospitalSpecialtyModel {
104
113
  * @memberof HospitalSpecialtyModel
105
114
  */
106
115
  'servicesCount'?: number;
116
+ /**
117
+ *
118
+ * @type {string}
119
+ * @memberof HospitalSpecialtyModel
120
+ */
121
+ 'appointmentCurrency'?: string | null;
107
122
  /**
108
123
  *
109
124
  * @type {string}
@@ -206,5 +221,23 @@ export interface HospitalSpecialtyModel {
206
221
  * @memberof HospitalSpecialtyModel
207
222
  */
208
223
  'medias'?: Array<MediaModel> | null;
224
+ /**
225
+ *
226
+ * @type {Array<HospitalContactItemModel>}
227
+ * @memberof HospitalSpecialtyModel
228
+ */
229
+ 'hospitalContacts'?: Array<HospitalContactItemModel> | null;
230
+ /**
231
+ *
232
+ * @type {Array<BankAccountInfoModel>}
233
+ * @memberof HospitalSpecialtyModel
234
+ */
235
+ 'hospitalBankAccountInfos'?: Array<BankAccountInfoModel> | null;
236
+ /**
237
+ *
238
+ * @type {Array<PaymentMethod>}
239
+ * @memberof HospitalSpecialtyModel
240
+ */
241
+ 'hospitalPaymentMethods'?: Array<PaymentMethod> | null;
209
242
  }
210
243
 
@@ -266,6 +266,12 @@ export interface HospitalSubDocumentModel {
266
266
  * @memberof HospitalSubDocumentModel
267
267
  */
268
268
  'MarketingType'?: string | null;
269
+ /**
270
+ *
271
+ * @type {string}
272
+ * @memberof HospitalSubDocumentModel
273
+ */
274
+ 'AppointmentCurrency'?: string | null;
269
275
  /**
270
276
  *
271
277
  * @type {string}
@@ -34,6 +34,9 @@ export * from './articles-model';
34
34
  export * from './auditable-entity';
35
35
  export * from './auditable-entity-model';
36
36
  export * from './award-model';
37
+ export * from './bank-account-info-item-model';
38
+ export * from './bank-account-info-model';
39
+ export * from './bank-account-infos-model';
37
40
  export * from './booking-change-log-model';
38
41
  export * from './booking-item-model';
39
42
  export * from './booking-model';
@@ -157,6 +160,7 @@ export * from './header-navigation-item-model';
157
160
  export * from './hospital-accreditation-item-model';
158
161
  export * from './hospital-accreditation-model';
159
162
  export * from './hospital-accreditations-model';
163
+ export * from './hospital-bank-account-info-document-model';
160
164
  export * from './hospital-consultation-option-model';
161
165
  export * from './hospital-contact-document-model';
162
166
  export * from './hospital-contact-item-model';
@@ -218,6 +222,7 @@ export * from './notifications-model';
218
222
  export * from './package-sub-document-model';
219
223
  export * from './paged-list-meta-data';
220
224
  export * from './patient-model';
225
+ export * from './payment-method';
221
226
  export * from './plan-hospital-item-model';
222
227
  export * from './plan-hospital-model';
223
228
  export * from './plan-hospitals-model';
@@ -0,0 +1,32 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
8
+ * Contact: hyounoosung@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
+ * @enum {string}
21
+ */
22
+
23
+ export const PaymentMethod = {
24
+ Stripe: 'Stripe',
25
+ Paypal: 'Paypal',
26
+ BankTransfer: 'BankTransfer'
27
+ } as const;
28
+
29
+ export type PaymentMethod = typeof PaymentMethod[keyof typeof PaymentMethod];
30
+
31
+
32
+