Skip to content

Commit 04de8ef

Browse files
fix: change property name due to serialization bug
1 parent 82dc3e2 commit 04de8ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/kotlin/entities/process/ProcessData.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ object ProcessData {
2929

3030
/**
3131
* The event of medical technology usage given its [medicalTechnologyID].
32-
* @param isInUse true if the medical technology is in use, false otherwise.
32+
* @param inUse true if the medical technology is in use, false otherwise.
3333
*/
34-
data class MedicalTechnologyUsage(val medicalTechnologyID: String, val isInUse: Boolean)
34+
data class MedicalTechnologyUsage(val medicalTechnologyID: String, val inUse: Boolean)
3535
}

0 commit comments

Comments
 (0)