I wanna have an interface with serializable properties, but is there no way to do it so that i dont have to override every single one in my implementation
Like this
Copy code
@Serializable
internal data class ApiTrending(
override val tabs: List<ApiBrowse.Tab<JsonElement>>
) : ApiBrowse<JsonElement>
zt
04/18/2023, 4:25 AM
im having an awful time trying to make this easy to use
zt
04/18/2023, 4:25 AM
ive got no idea how
zt
04/19/2023, 5:25 AM
is there no way to make the overriden field inherit the serial name at least?