Is there some way to remove the names for these in...
# serialization
z
Is there some way to remove the names for these inner private fields? They're never mean't to be accessed and are only there so they get added to the serialized output. Its just saying unused variable, which isnt a huge issue but it could be better
Copy code
@Serializable
data class ReplyParams(
    @ProtoNumber(2) val videoId: String,
    @ProtoNumber(4) val commentId: String
) {
    @ProtoNumber(5)
    private val unknownParams: UnknownParams = UnknownParams()

    @ProtoNumber(10)
    private val unknownNumber: Int = 0

    @Serializable
    private class UnknownParams {
        @ProtoNumber(1)
        private val unknownNumber: Int = 7
    }
}