We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1cc56a commit 27daa71Copy full SHA for 27daa71
src/main/kotlin/com/ctrlhub/core/assets/equipment/resource/EquipmentResources.kt
@@ -71,15 +71,15 @@ class EquipmentModel @JsonCreator constructor(
71
}
72
73
class EquipmentModelSpecification @JsonCreator constructor(
74
- @JsonProperty("vibration") vibration: EquipmentSpecificationVibration? = null
+ @JsonProperty("vibration") var vibration: EquipmentSpecificationVibration? = null
75
) {
76
constructor(): this(
77
vibration = null
78
)
79
80
81
class EquipmentSpecificationVibration @JsonCreator constructor(
82
- @JsonProperty("magnitude") magnitude: Double = 0.0
+ @JsonProperty("magnitude") var magnitude: Double = 0.0
83
84
85
magnitude = 0.0
0 commit comments