com.github.stormbit.vksdk.objects.models.LongPollServerResponse.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 kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
@Serializable
data class LongPollServerResponse(
@SerialName("server") val server: String,
@SerialName("key") val key: String? = null,
@SerialName("pts") val pts: Int? = null,
@SerialName("ts") val ts: String? = null
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy