Giovanni Desiderio

Results 2 comments of Giovanni Desiderio

I would suggest creating an interface that all your serializable enums implement. For example: ``` interface ApiNamed { val apiName: String } @Serializable enum class NotificationType : ApiNamed { @SerialName("update")...

I agree with the suggestion made by @andregasser. Keep going with the cleanest solution of setting endpoints as internal 👍🏼