FWIW. the following passes: ``` class MyEntity...
# klaxon
c
FWIW. the following passes:
Copy code
class MyEntity(
        @Json(name = "foo", ignored = true)
        var myFoo : String = "abc",

        @Json(name = "bar")
        var myBar : String
    )

    @Test
    fun ignored() {
        val o = Klaxon().parse<MyEntity>("""
            {
               "bar": "def"
            }
        """.trimIndent())