com.github.stormbit.vksdk.objects.models.FriendRequest.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 FriendRequest(
@SerialName("user_id") val userId: Int,
@SerialName("senderType") val from: Int? = null,
@SerialName("message") val message: String? = null,
@SerialName("mutual") val mutual: Mutual? = null
) {
@Serializable
data class Mutual(
@SerialName("count") val count: Int,
@SerialName("users") val users: List
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy