We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have make interface for entities (kotlinx serialization)
interface WithId { val id: String //I use value class here actually }
All other entities inherits it How to deal with _id globally without @SerialName("_id") everywhere ?
@SerialName("_id")
The text was updated successfully, but these errors were encountered:
I would say this is more a kotlinx.serialization question (see Kotlin/kotlinx.serialization#33). I think it's not feasible for now.
Sorry, something went wrong.
No branches or pull requests
I have make interface for entities (kotlinx serialization)
All other entities inherits it
How to deal with _id globally without
@SerialName("_id")
everywhere ?The text was updated successfully, but these errors were encountered: