Emre
02/11/2025, 2:44 PMjamshedalamqaderi
02/11/2025, 2:54 PMEmre
02/11/2025, 2:55 PM@Serializable
sealed class IdOrUuid {
@Serializable
data class Id(val id: Long) : IdOrUuid()
@Serializable
data class Uuid(val uuid: String) : IdOrUuid()
}
Can this type be used as a Resource parameter? I can't seem to, and I would consider it a bug.spand
02/11/2025, 3:34 PMEmre
02/11/2025, 3:57 PMAleksei Tirman [JB]
02/11/2025, 3:58 PMjamshedalamqaderi
02/11/2025, 6:30 PM