From 04de8ef56b70633991ac4b347ce590f58435b3e9 Mon Sep 17 00:00:00 2001 From: Andrea Acampora Date: Fri, 10 Mar 2023 11:51:59 +0100 Subject: [PATCH] fix: change property name due to serialization bug --- src/main/kotlin/entities/process/ProcessData.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/entities/process/ProcessData.kt b/src/main/kotlin/entities/process/ProcessData.kt index 8bed540..44a5978 100644 --- a/src/main/kotlin/entities/process/ProcessData.kt +++ b/src/main/kotlin/entities/process/ProcessData.kt @@ -29,7 +29,7 @@ object ProcessData { /** * The event of medical technology usage given its [medicalTechnologyID]. - * @param isInUse true if the medical technology is in use, false otherwise. + * @param inUse true if the medical technology is in use, false otherwise. */ - data class MedicalTechnologyUsage(val medicalTechnologyID: String, val isInUse: Boolean) + data class MedicalTechnologyUsage(val medicalTechnologyID: String, val inUse: Boolean) }