I want to know how to ignore a Kotlin class field when using Moshi.
I've found this answer for Java (Moshi ignore field), that indicates to use the keyword transient as follows
private transient String your_variable_name;
But I can't find the right way to get this done in Kotlin.