Rust sdk : handle the remaining changes

This commit is contained in:
ganfra 2024-08-27 17:45:32 +02:00
parent 88a581427c
commit 2361b597d9
6 changed files with 12 additions and 6 deletions

View file

@ -53,6 +53,7 @@ sealed interface NotificationContent {
data class CallInvite(
val senderId: UserId,
) : MessageLike
data class CallNotify(
val senderId: UserId,
val type: CallNotifyType,
@ -77,7 +78,11 @@ sealed interface NotificationContent {
val messageType: MessageType
) : MessageLike
data object RoomRedaction : MessageLike
data class RoomRedaction(
val redactedEventId: String?,
val reason: String?
) : MessageLike
data object Sticker : MessageLike
data class Poll(
val senderId: UserId,