[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:
Surya Asriadie
2021-09-17 02:12:41 +09:00
committed by GitHub
parent f9320cae68
commit 0936b43dfd
23 changed files with 23 additions and 23 deletions

View File

@@ -56,7 +56,7 @@ data class Order (
val status: Order.Status? = null,
@SerialName(value = "complete")
val complete: kotlin.Boolean? = null
val complete: kotlin.Boolean? = false
) : Serializable {
companion object {