forked from loafle/openapi-generator-original
[Kotlin] Fix default value for kotlin class (#10407)
* Fix default value for kotlin class * fix style: remove trailing line * fix ktorm schema
This commit is contained in:
@@ -53,7 +53,7 @@ internal data class Order (
|
||||
val status: Order.Status? = null,
|
||||
|
||||
@Json(name = "complete")
|
||||
val complete: kotlin.Boolean? = null
|
||||
val complete: kotlin.Boolean? = false
|
||||
|
||||
) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user