<@U0B8ZP13Q> This is my structure: ```enum class P...
# klaxon
d
@cedric This is my structure:
Copy code
enum class PaymentFor { SECURITY_PLAN, SIM }
	data class Success(
			@Json(name = "name")
			val customerName: String,
			@Json(name = "tags")
			val tags: List<String> = listOf(),
			@Json(name = "payment_for")
			val paymentFor: PaymentFor
	) : PaymentResult() // 200
And I receive
SECURITY_PLAN
or
SIM
string in the json for
payment_for
.. that'll work?