ch-admin-api-client-typescript 5.21.22 → 5.23.2

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 (92) hide show
  1. package/lib/api/appointments-api.d.ts +30 -3
  2. package/lib/api/appointments-api.d.ts.map +1 -1
  3. package/lib/api/appointments-api.js +28 -6
  4. package/lib/api/patient-affiliations-api.d.ts +216 -0
  5. package/lib/api/patient-affiliations-api.d.ts.map +1 -0
  6. package/lib/api/patient-affiliations-api.js +358 -0
  7. package/lib/api/patients-api.d.ts +191 -3
  8. package/lib/api/patients-api.d.ts.map +1 -1
  9. package/lib/api/patients-api.js +289 -6
  10. package/lib/api.d.ts +1 -0
  11. package/lib/api.d.ts.map +1 -1
  12. package/lib/api.js +1 -0
  13. package/lib/models/chadmin-item-model.d.ts +3 -3
  14. package/lib/models/chadmin-item-model.d.ts.map +1 -1
  15. package/lib/models/chadmin-model.d.ts +3 -3
  16. package/lib/models/chadmin-model.d.ts.map +1 -1
  17. package/lib/models/chmanager-item-model.d.ts +3 -3
  18. package/lib/models/chmanager-item-model.d.ts.map +1 -1
  19. package/lib/models/chmanager-model.d.ts +3 -3
  20. package/lib/models/chmanager-model.d.ts.map +1 -1
  21. package/lib/models/create-article-command.d.ts +6 -0
  22. package/lib/models/create-article-command.d.ts.map +1 -1
  23. package/lib/models/create-patient-affiliation-command.d.ts +109 -0
  24. package/lib/models/create-patient-affiliation-command.d.ts.map +1 -0
  25. package/lib/models/create-patient-affiliation-command.js +15 -0
  26. package/lib/models/create-patient-command.d.ts +90 -0
  27. package/lib/models/create-patient-command.d.ts.map +1 -1
  28. package/lib/models/doctor-item-model.d.ts +3 -3
  29. package/lib/models/doctor-item-model.d.ts.map +1 -1
  30. package/lib/models/doctor-model.d.ts +3 -3
  31. package/lib/models/doctor-model.d.ts.map +1 -1
  32. package/lib/models/get-patient-walk-in-query.d.ts +37 -0
  33. package/lib/models/get-patient-walk-in-query.d.ts.map +1 -0
  34. package/lib/models/get-patient-walk-in-query.js +15 -0
  35. package/lib/models/index.d.ts +7 -0
  36. package/lib/models/index.d.ts.map +1 -1
  37. package/lib/models/index.js +7 -0
  38. package/lib/models/manager-item-model.d.ts +3 -3
  39. package/lib/models/manager-item-model.d.ts.map +1 -1
  40. package/lib/models/manager-model.d.ts +3 -3
  41. package/lib/models/manager-model.d.ts.map +1 -1
  42. package/lib/models/patient-affiliation-item-model.d.ts +153 -0
  43. package/lib/models/patient-affiliation-item-model.d.ts.map +1 -0
  44. package/lib/models/patient-affiliation-item-model.js +15 -0
  45. package/lib/models/patient-affiliation-model.d.ts +153 -0
  46. package/lib/models/patient-affiliation-model.d.ts.map +1 -0
  47. package/lib/models/patient-affiliation-model.js +15 -0
  48. package/lib/models/patient-affiliations-model.d.ts +33 -0
  49. package/lib/models/patient-affiliations-model.d.ts.map +1 -0
  50. package/lib/models/patient-affiliations-model.js +15 -0
  51. package/lib/models/patient-item-model.d.ts +3 -3
  52. package/lib/models/patient-item-model.d.ts.map +1 -1
  53. package/lib/models/patient-model.d.ts +3 -3
  54. package/lib/models/patient-model.d.ts.map +1 -1
  55. package/lib/models/patient-walk-in-model.d.ts +32 -0
  56. package/lib/models/patient-walk-in-model.d.ts.map +1 -0
  57. package/lib/models/patient-walk-in-model.js +15 -0
  58. package/lib/models/update-article-command.d.ts +6 -0
  59. package/lib/models/update-article-command.d.ts.map +1 -1
  60. package/lib/models/update-patient-affiliation-command.d.ts +115 -0
  61. package/lib/models/update-patient-affiliation-command.d.ts.map +1 -0
  62. package/lib/models/update-patient-affiliation-command.js +15 -0
  63. package/lib/models/user-model.d.ts +3 -3
  64. package/lib/models/user-model.d.ts.map +1 -1
  65. package/package.json +1 -1
  66. package/src/.openapi-generator/FILES +8 -0
  67. package/src/api/appointments-api.ts +52 -6
  68. package/src/api/patient-affiliations-api.ts +361 -0
  69. package/src/api/patients-api.ts +337 -6
  70. package/src/api.ts +1 -0
  71. package/src/models/chadmin-item-model.ts +3 -3
  72. package/src/models/chadmin-model.ts +3 -3
  73. package/src/models/chmanager-item-model.ts +3 -3
  74. package/src/models/chmanager-model.ts +3 -3
  75. package/src/models/create-article-command.ts +6 -0
  76. package/src/models/create-patient-affiliation-command.ts +114 -0
  77. package/src/models/create-patient-command.ts +90 -0
  78. package/src/models/doctor-item-model.ts +3 -3
  79. package/src/models/doctor-model.ts +3 -3
  80. package/src/models/get-patient-walk-in-query.ts +42 -0
  81. package/src/models/index.ts +7 -0
  82. package/src/models/manager-item-model.ts +3 -3
  83. package/src/models/manager-model.ts +3 -3
  84. package/src/models/patient-affiliation-item-model.ts +162 -0
  85. package/src/models/patient-affiliation-model.ts +162 -0
  86. package/src/models/patient-affiliations-model.ts +42 -0
  87. package/src/models/patient-item-model.ts +3 -3
  88. package/src/models/patient-model.ts +3 -3
  89. package/src/models/patient-walk-in-model.ts +39 -0
  90. package/src/models/update-article-command.ts +6 -0
  91. package/src/models/update-patient-affiliation-command.ts +120 -0
  92. package/src/models/user-model.ts +3 -3
@@ -0,0 +1,114 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
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 CreatePatientAffiliationCommand
21
+ */
22
+ export interface CreatePatientAffiliationCommand {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof CreatePatientAffiliationCommand
27
+ */
28
+ 'languageCode'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof CreatePatientAffiliationCommand
33
+ */
34
+ 'name'?: string | null;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof CreatePatientAffiliationCommand
39
+ */
40
+ 'height'?: number | null;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof CreatePatientAffiliationCommand
45
+ */
46
+ 'heightUnit'?: string | null;
47
+ /**
48
+ *
49
+ * @type {number}
50
+ * @memberof CreatePatientAffiliationCommand
51
+ */
52
+ 'weight'?: number | null;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof CreatePatientAffiliationCommand
57
+ */
58
+ 'weightUnit'?: string | null;
59
+ /**
60
+ *
61
+ * @type {number}
62
+ * @memberof CreatePatientAffiliationCommand
63
+ */
64
+ 'bodyMassIndex'?: number | null;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof CreatePatientAffiliationCommand
69
+ */
70
+ 'bodyMassIndexUnit'?: string | null;
71
+ /**
72
+ *
73
+ * @type {number}
74
+ * @memberof CreatePatientAffiliationCommand
75
+ */
76
+ 'pulseRate'?: number | null;
77
+ /**
78
+ *
79
+ * @type {string}
80
+ * @memberof CreatePatientAffiliationCommand
81
+ */
82
+ 'pulseRateUnit'?: string | null;
83
+ /**
84
+ *
85
+ * @type {number}
86
+ * @memberof CreatePatientAffiliationCommand
87
+ */
88
+ 'systolicBloodPressure'?: number | null;
89
+ /**
90
+ *
91
+ * @type {number}
92
+ * @memberof CreatePatientAffiliationCommand
93
+ */
94
+ 'diastolicBloodPressure'?: number | null;
95
+ /**
96
+ *
97
+ * @type {string}
98
+ * @memberof CreatePatientAffiliationCommand
99
+ */
100
+ 'bloodPressureUnit'?: string | null;
101
+ /**
102
+ *
103
+ * @type {number}
104
+ * @memberof CreatePatientAffiliationCommand
105
+ */
106
+ 'bodyTemperature'?: number | null;
107
+ /**
108
+ *
109
+ * @type {string}
110
+ * @memberof CreatePatientAffiliationCommand
111
+ */
112
+ 'bodyTemperatureUnit'?: string | null;
113
+ }
114
+
@@ -89,5 +89,95 @@ export interface CreatePatientCommand {
89
89
  * @memberof CreatePatientCommand
90
90
  */
91
91
  'hospitalId'?: string;
92
+ /**
93
+ *
94
+ * @type {string}
95
+ * @memberof CreatePatientCommand
96
+ */
97
+ 'languageCode'?: string | null;
98
+ /**
99
+ *
100
+ * @type {string}
101
+ * @memberof CreatePatientCommand
102
+ */
103
+ 'name'?: string | null;
104
+ /**
105
+ *
106
+ * @type {number}
107
+ * @memberof CreatePatientCommand
108
+ */
109
+ 'height'?: number | null;
110
+ /**
111
+ *
112
+ * @type {string}
113
+ * @memberof CreatePatientCommand
114
+ */
115
+ 'heightUnit'?: string | null;
116
+ /**
117
+ *
118
+ * @type {number}
119
+ * @memberof CreatePatientCommand
120
+ */
121
+ 'weight'?: number | null;
122
+ /**
123
+ *
124
+ * @type {string}
125
+ * @memberof CreatePatientCommand
126
+ */
127
+ 'weightUnit'?: string | null;
128
+ /**
129
+ *
130
+ * @type {number}
131
+ * @memberof CreatePatientCommand
132
+ */
133
+ 'bodyMassIndex'?: number | null;
134
+ /**
135
+ *
136
+ * @type {string}
137
+ * @memberof CreatePatientCommand
138
+ */
139
+ 'bodyMassIndexUnit'?: string | null;
140
+ /**
141
+ *
142
+ * @type {number}
143
+ * @memberof CreatePatientCommand
144
+ */
145
+ 'pulseRate'?: number | null;
146
+ /**
147
+ *
148
+ * @type {string}
149
+ * @memberof CreatePatientCommand
150
+ */
151
+ 'pulseRateUnit'?: string | null;
152
+ /**
153
+ *
154
+ * @type {number}
155
+ * @memberof CreatePatientCommand
156
+ */
157
+ 'systolicBloodPressure'?: number | null;
158
+ /**
159
+ *
160
+ * @type {number}
161
+ * @memberof CreatePatientCommand
162
+ */
163
+ 'diastolicBloodPressure'?: number | null;
164
+ /**
165
+ *
166
+ * @type {string}
167
+ * @memberof CreatePatientCommand
168
+ */
169
+ 'bloodPressureUnit'?: string | null;
170
+ /**
171
+ *
172
+ * @type {number}
173
+ * @memberof CreatePatientCommand
174
+ */
175
+ 'bodyTemperature'?: number | null;
176
+ /**
177
+ *
178
+ * @type {string}
179
+ * @memberof CreatePatientCommand
180
+ */
181
+ 'bodyTemperatureUnit'?: string | null;
92
182
  }
93
183
 
@@ -15,7 +15,7 @@
15
15
 
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
- import { AuditableEntity } from './auditable-entity';
18
+ import { AuditableEntityModel } from './auditable-entity-model';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
21
  import { Gender } from './gender';
@@ -106,10 +106,10 @@ export interface DoctorItemModel {
106
106
  'communicationUserId'?: string | null;
107
107
  /**
108
108
  *
109
- * @type {AuditableEntity}
109
+ * @type {AuditableEntityModel}
110
110
  * @memberof DoctorItemModel
111
111
  */
112
- 'auditableEntity'?: AuditableEntity;
112
+ 'auditableEntity'?: AuditableEntityModel;
113
113
  /**
114
114
  *
115
115
  * @type {string}
@@ -15,7 +15,7 @@
15
15
 
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
- import { AuditableEntity } from './auditable-entity';
18
+ import { AuditableEntityModel } from './auditable-entity-model';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
21
  import { DoctorAffiliationSimpleModel } from './doctor-affiliation-simple-model';
@@ -115,10 +115,10 @@ export interface DoctorModel {
115
115
  'communicationUserId'?: string | null;
116
116
  /**
117
117
  *
118
- * @type {AuditableEntity}
118
+ * @type {AuditableEntityModel}
119
119
  * @memberof DoctorModel
120
120
  */
121
- 'auditableEntity'?: AuditableEntity;
121
+ 'auditableEntity'?: AuditableEntityModel;
122
122
  /**
123
123
  *
124
124
  * @type {string}
@@ -0,0 +1,42 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
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 GetPatientWalkInQuery
21
+ */
22
+ export interface GetPatientWalkInQuery {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof GetPatientWalkInQuery
27
+ */
28
+ 'hospitalId'?: string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof GetPatientWalkInQuery
33
+ */
34
+ 'email'?: string | null;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof GetPatientWalkInQuery
39
+ */
40
+ 'phone'?: string | null;
41
+ }
42
+
@@ -145,6 +145,7 @@ export * from './create-manager-command';
145
145
  export * from './create-media-command';
146
146
  export * from './create-notice-command';
147
147
  export * from './create-page-command';
148
+ export * from './create-patient-affiliation-command';
148
149
  export * from './create-patient-command';
149
150
  export * from './create-plan-command';
150
151
  export * from './create-plan-hospital-command';
@@ -222,6 +223,7 @@ export * from './feature-model';
222
223
  export * from './footer-navigation-item-model';
223
224
  export * from './gender';
224
225
  export * from './general-statistics-model';
226
+ export * from './get-patient-walk-in-query';
225
227
  export * from './get-transfer-balance-embeded';
226
228
  export * from './get-transfer-balance-result';
227
229
  export * from './grade-item-model';
@@ -345,8 +347,12 @@ export * from './page-section-input-model';
345
347
  export * from './page-section-list-type';
346
348
  export * from './page-section-model';
347
349
  export * from './paged-list-meta-data';
350
+ export * from './patient-affiliation-item-model';
351
+ export * from './patient-affiliation-model';
352
+ export * from './patient-affiliations-model';
348
353
  export * from './patient-item-model';
349
354
  export * from './patient-model';
355
+ export * from './patient-walk-in-model';
350
356
  export * from './patients-model';
351
357
  export * from './payment-method';
352
358
  export * from './payment-model';
@@ -532,6 +538,7 @@ export * from './update-media-command';
532
538
  export * from './update-notice-command';
533
539
  export * from './update-number-command';
534
540
  export * from './update-page-command';
541
+ export * from './update-patient-affiliation-command';
535
542
  export * from './update-patient-command';
536
543
  export * from './update-plan-command';
537
544
  export * from './update-plan-hospital-command';
@@ -15,7 +15,7 @@
15
15
 
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
- import { AuditableEntity } from './auditable-entity';
18
+ import { AuditableEntityModel } from './auditable-entity-model';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
21
  import { Gender } from './gender';
@@ -106,10 +106,10 @@ export interface ManagerItemModel {
106
106
  'communicationUserId'?: string | null;
107
107
  /**
108
108
  *
109
- * @type {AuditableEntity}
109
+ * @type {AuditableEntityModel}
110
110
  * @memberof ManagerItemModel
111
111
  */
112
- 'auditableEntity'?: AuditableEntity;
112
+ 'auditableEntity'?: AuditableEntityModel;
113
113
  /**
114
114
  *
115
115
  * @type {number}
@@ -15,7 +15,7 @@
15
15
 
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
- import { AuditableEntity } from './auditable-entity';
18
+ import { AuditableEntityModel } from './auditable-entity-model';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
21
  import { Gender } from './gender';
@@ -115,10 +115,10 @@ export interface ManagerModel {
115
115
  'communicationUserId'?: string | null;
116
116
  /**
117
117
  *
118
- * @type {AuditableEntity}
118
+ * @type {AuditableEntityModel}
119
119
  * @memberof ManagerModel
120
120
  */
121
- 'auditableEntity'?: AuditableEntity;
121
+ 'auditableEntity'?: AuditableEntityModel;
122
122
  /**
123
123
  *
124
124
  * @type {string}
@@ -0,0 +1,162 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
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
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { AuditableEntityModel } from './auditable-entity-model';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { PatientItemModel } from './patient-item-model';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface PatientAffiliationItemModel
27
+ */
28
+ export interface PatientAffiliationItemModel {
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof PatientAffiliationItemModel
33
+ */
34
+ 'id'?: string;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof PatientAffiliationItemModel
39
+ */
40
+ 'languageCode'?: string | null;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof PatientAffiliationItemModel
45
+ */
46
+ 'patientId'?: string;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof PatientAffiliationItemModel
51
+ */
52
+ 'hospitalId'?: string;
53
+ /**
54
+ *
55
+ * @type {PatientItemModel}
56
+ * @memberof PatientAffiliationItemModel
57
+ */
58
+ 'patient'?: PatientItemModel;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof PatientAffiliationItemModel
63
+ */
64
+ 'hospitalName'?: string | null;
65
+ /**
66
+ *
67
+ * @type {number}
68
+ * @memberof PatientAffiliationItemModel
69
+ */
70
+ 'height'?: number | null;
71
+ /**
72
+ *
73
+ * @type {string}
74
+ * @memberof PatientAffiliationItemModel
75
+ */
76
+ 'heightUnit'?: string | null;
77
+ /**
78
+ *
79
+ * @type {number}
80
+ * @memberof PatientAffiliationItemModel
81
+ */
82
+ 'weight'?: number | null;
83
+ /**
84
+ *
85
+ * @type {string}
86
+ * @memberof PatientAffiliationItemModel
87
+ */
88
+ 'weightUnit'?: string | null;
89
+ /**
90
+ *
91
+ * @type {number}
92
+ * @memberof PatientAffiliationItemModel
93
+ */
94
+ 'bodyMassIndex'?: number | null;
95
+ /**
96
+ *
97
+ * @type {string}
98
+ * @memberof PatientAffiliationItemModel
99
+ */
100
+ 'bodyMassIndexUnit'?: string | null;
101
+ /**
102
+ *
103
+ * @type {number}
104
+ * @memberof PatientAffiliationItemModel
105
+ */
106
+ 'pulseRate'?: number | null;
107
+ /**
108
+ *
109
+ * @type {string}
110
+ * @memberof PatientAffiliationItemModel
111
+ */
112
+ 'pulseRateUnit'?: string | null;
113
+ /**
114
+ *
115
+ * @type {number}
116
+ * @memberof PatientAffiliationItemModel
117
+ */
118
+ 'systolicBloodPressure'?: number | null;
119
+ /**
120
+ *
121
+ * @type {number}
122
+ * @memberof PatientAffiliationItemModel
123
+ */
124
+ 'diastolicBloodPressure'?: number | null;
125
+ /**
126
+ *
127
+ * @type {string}
128
+ * @memberof PatientAffiliationItemModel
129
+ */
130
+ 'bloodPressureUnit'?: string | null;
131
+ /**
132
+ *
133
+ * @type {number}
134
+ * @memberof PatientAffiliationItemModel
135
+ */
136
+ 'bodyTemperature'?: number | null;
137
+ /**
138
+ *
139
+ * @type {string}
140
+ * @memberof PatientAffiliationItemModel
141
+ */
142
+ 'bodyTemperatureUnit'?: string | null;
143
+ /**
144
+ *
145
+ * @type {string}
146
+ * @memberof PatientAffiliationItemModel
147
+ */
148
+ 'name'?: string | null;
149
+ /**
150
+ *
151
+ * @type {boolean}
152
+ * @memberof PatientAffiliationItemModel
153
+ */
154
+ 'isConfirmed'?: boolean;
155
+ /**
156
+ *
157
+ * @type {AuditableEntityModel}
158
+ * @memberof PatientAffiliationItemModel
159
+ */
160
+ 'auditableEntity'?: AuditableEntityModel;
161
+ }
162
+
@@ -0,0 +1,162 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
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
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { AuditableEntityModel } from './auditable-entity-model';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { PatientItemModel } from './patient-item-model';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface PatientAffiliationModel
27
+ */
28
+ export interface PatientAffiliationModel {
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof PatientAffiliationModel
33
+ */
34
+ 'id'?: string;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof PatientAffiliationModel
39
+ */
40
+ 'languageCode'?: string | null;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof PatientAffiliationModel
45
+ */
46
+ 'patientId'?: string;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof PatientAffiliationModel
51
+ */
52
+ 'hospitalId'?: string;
53
+ /**
54
+ *
55
+ * @type {PatientItemModel}
56
+ * @memberof PatientAffiliationModel
57
+ */
58
+ 'patient'?: PatientItemModel;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof PatientAffiliationModel
63
+ */
64
+ 'hospitalName'?: string | null;
65
+ /**
66
+ *
67
+ * @type {number}
68
+ * @memberof PatientAffiliationModel
69
+ */
70
+ 'height'?: number | null;
71
+ /**
72
+ *
73
+ * @type {string}
74
+ * @memberof PatientAffiliationModel
75
+ */
76
+ 'heightUnit'?: string | null;
77
+ /**
78
+ *
79
+ * @type {number}
80
+ * @memberof PatientAffiliationModel
81
+ */
82
+ 'weight'?: number | null;
83
+ /**
84
+ *
85
+ * @type {string}
86
+ * @memberof PatientAffiliationModel
87
+ */
88
+ 'weightUnit'?: string | null;
89
+ /**
90
+ *
91
+ * @type {number}
92
+ * @memberof PatientAffiliationModel
93
+ */
94
+ 'bodyMassIndex'?: number | null;
95
+ /**
96
+ *
97
+ * @type {string}
98
+ * @memberof PatientAffiliationModel
99
+ */
100
+ 'bodyMassIndexUnit'?: string | null;
101
+ /**
102
+ *
103
+ * @type {number}
104
+ * @memberof PatientAffiliationModel
105
+ */
106
+ 'pulseRate'?: number | null;
107
+ /**
108
+ *
109
+ * @type {string}
110
+ * @memberof PatientAffiliationModel
111
+ */
112
+ 'pulseRateUnit'?: string | null;
113
+ /**
114
+ *
115
+ * @type {number}
116
+ * @memberof PatientAffiliationModel
117
+ */
118
+ 'systolicBloodPressure'?: number | null;
119
+ /**
120
+ *
121
+ * @type {number}
122
+ * @memberof PatientAffiliationModel
123
+ */
124
+ 'diastolicBloodPressure'?: number | null;
125
+ /**
126
+ *
127
+ * @type {string}
128
+ * @memberof PatientAffiliationModel
129
+ */
130
+ 'bloodPressureUnit'?: string | null;
131
+ /**
132
+ *
133
+ * @type {number}
134
+ * @memberof PatientAffiliationModel
135
+ */
136
+ 'bodyTemperature'?: number | null;
137
+ /**
138
+ *
139
+ * @type {string}
140
+ * @memberof PatientAffiliationModel
141
+ */
142
+ 'bodyTemperatureUnit'?: string | null;
143
+ /**
144
+ *
145
+ * @type {string}
146
+ * @memberof PatientAffiliationModel
147
+ */
148
+ 'name'?: string | null;
149
+ /**
150
+ *
151
+ * @type {boolean}
152
+ * @memberof PatientAffiliationModel
153
+ */
154
+ 'isConfirmed'?: boolean;
155
+ /**
156
+ *
157
+ * @type {AuditableEntityModel}
158
+ * @memberof PatientAffiliationModel
159
+ */
160
+ 'auditableEntity'?: AuditableEntityModel;
161
+ }
162
+