Kotlin classes that use Boolean types fail on compile. fixing them you have to define:
@get:JvmName("isonlinePricingActive")
@set:JvmName("setisOnlinePricingActive")
var isOnlinePricingActive: Boolean = false,
A seperate getter/setter, which is lowercase. This does not work well with Kotlin. This file change fixes the issue by not using the elementNameLowerCase but instead uses elementName so we don't need the verbose annotation on any Boolean field.
Kotlin classes that use
Boolean
types fail on compile. fixing them you have to define:A seperate getter/setter, which is lowercase. This does not work well with Kotlin. This file change fixes the issue by not using the
elementNameLowerCase
but instead useselementName
so we don't need the verbose annotation on anyBoolean
field.