summaryrefslogtreecommitdiff
path: root/guide/example/example-serializer-22.kt
blob: 4eba74b0be2a98e9d990d948ae9c7953625eb7db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// This file was automatically generated from serializers.md by Knit tool. Do not edit.
package example.exampleSerializer22

import kotlinx.serialization.*
import kotlinx.serialization.json.*
import kotlinx.serialization.encoding.*
import kotlinx.serialization.descriptors.*

// NOT @Serializable
class Project(val name: String, val language: String)
                           
@Serializer(forClass = Project::class)
object ProjectSerializer

fun main() {
    val data = Project("kotlinx.serialization", "Kotlin")
    println(Json.encodeToString(ProjectSerializer, data))    
}