Is there a GSON equivalent annotation for Jackson's @get:JsonValue
?
I have the below enum and I need the GSON annotation as well.
enum class TransactionType(@get:JsonValue val code: Int) { ... }
Is there a GSON equivalent annotation for Jackson's @get:JsonValue
?
I have the below enum and I need the GSON annotation as well.
enum class TransactionType(@get:JsonValue val code: Int) { ... }