fix nullable variables

This commit is contained in:
2026-06-09 12:37:52 +03:00
parent 154e343a70
commit 5afb59cd94
2 changed files with 2 additions and 2 deletions
@@ -11,7 +11,7 @@ data class VkChannelMessageData(
@Json(name = "author_id") val authorId: Long,
@Json(name = "channel_info") val channelInfo: ChannelInfo,
@Json(name = "channel_type") val channelType: String,
@Json(name = "guid") val guid: String,
@Json(name = "guid") val guid: String?,
@Json(name = "text") val text: String?,
@Json(name = "time") val time: Long,
@Json(name = "attachments") val attachments: List<VkAttachmentItemData> = emptyList(),
@@ -8,7 +8,7 @@ data class VkChannelMessage(
val authorId: Long,
val channelInfo: ChannelInfo,
val channelType: String,
val guid: String,
val guid: String?,
val text: String?,
val time: Long,
val attachments: List<VkAttachment>?,