| // This file was automatically generated from polymorphism.md by Knit tool. Do not edit. | |
| package example.examplePoly05 | |
| import kotlinx.serialization.* | |
| import kotlinx.serialization.json.* | |
| @Serializable | |
| sealed class Project { | |
| abstract val name: String | |
| } | |
| @Serializable | |
| @SerialName("owned") | |
| class OwnedProject(override val name: String, val owner: String) : Project() | |
| fun main() { | |
| val data: Project = OwnedProject("kotlinx.coroutines", "kotlin") | |
| println(Json.encodeToString(data)) | |
| } |