All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.stormbit.vksdk.objects.models.LongPollServerResponse.kt Maven / Gradle / Ivy

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