mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-12-28 11:58:35 +03:00
up pr: lint
This commit is contained in:
parent
7ead76c8ca
commit
a223ddc48a
1 changed files with 3 additions and 3 deletions
|
@ -51,19 +51,19 @@ import org.unifiedpush.android.connector.MessagingReceiver
|
|||
import org.unifiedpush.android.connector.MessagingReceiverHandler
|
||||
import timber.log.Timber
|
||||
|
||||
data class UnifiedPushMessage (
|
||||
data class UnifiedPushMessage(
|
||||
val notification: Notification
|
||||
)
|
||||
|
||||
@JsonClass(generateAdapter = true)
|
||||
data class Notification (
|
||||
data class Notification(
|
||||
@Json(name = "event_id") val eventId: String = "",
|
||||
@Json(name = "room_id") val roomId: String = "",
|
||||
var unread: Int = 0,
|
||||
val counts: Counts = Counts()
|
||||
)
|
||||
|
||||
data class Counts (
|
||||
data class Counts(
|
||||
val unread: Int = 0
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue