Thinking out loud: ``` class Shape class R...
# klaxon
c
Thinking out loud:
Copy code
class Shape
    class Rectangle: Shape
    class Circle: Shape

    @TypeFor(field = "shape", adapter = ShapeTypeAdapter::class)
    val type: Integer
    
    val shape: Shape