RoomSyncUnreadThreadNotifications

@JsonClass(generateAdapter = true)
data class RoomSyncUnreadThreadNotifications(@Json(name = "notification_count") val notificationCount: Int? = null, @Json(name = "highlight_count") val highlightCount: Int? = null)

Constructors

Link copied to clipboard
fun RoomSyncUnreadThreadNotifications(@Json(name = "notification_count") notificationCount: Int? = null, @Json(name = "highlight_count") highlightCount: Int? = null)

Properties

Link copied to clipboard
val highlightCount: Int? = null

The number of threads with highlighted unread messages (subset of notifications).

Link copied to clipboard
val notificationCount: Int? = null

The number of threads with unread messages that match the push notification rules.