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 8029466 commit a95549fCopy full SHA for a95549f
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") val 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") val magnitude: Double = 0.0
83
84
85
magnitude = 0.0
0 commit comments