com.github.stormbit.vksdk.objects.models.MessageEvent.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vk-bot-sdk-kotlin Show documentation
Show all versions of vk-bot-sdk-kotlin Show documentation
The Kotlin library for working with VK api
The newest version!
package com.github.stormbit.vksdk.objects.models
import com.github.stormbit.vksdk.events.Event
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
import kotlinx.serialization.json.JsonObject
@Serializable
data class MessageEvent(
@SerialName("event_id") val eventId: String,
@SerialName("payload") val payload: JsonObject,
@SerialName("peer_id") val peerId: Int,
@SerialName("user_id") val userId: Int
) : Event
© 2015 - 2024 Weber Informatics LLC | Privacy Policy