Hi, is there a way to modify how an enum value wil...
# serialization
a
Hi, is there a way to modify how an enum value will serialize ? I have this enum :
Copy code
@Serializable
enum class Environment {
	BOTH,
	CLIENT,
	SERVER;
}
And I want the
BOTH
value to be serialized to
*
e
Copy code
@SerialName("*") BOTH,
a
Oh thanks ^^