com.github.stormbit.vksdk.objects.models.Geo.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 Geo(
@SerialName("type") val type: String,
@SerialName("coordinates") val coordinates: String,
@SerialName("place") val place: Place? = null,
@SerialName("showmap") val showMap: Boolean? = null
) {
@Serializable
data class Place(
@SerialName("id") val id: Int? = null,
@SerialName("title") val title: String? = null,
@SerialName("latitude") val latitude: Double? = null,
@SerialName("longitude") val longitude: Double? = null,
@SerialName("created") val createdDate: Int? = null,
@SerialName("updated") val updatedDate: Int? = null,
@SerialName("icon") val iconUrl: String? = null,
@SerialName("country") val country: String? = null,
@SerialName("city") val city: String? = null,
@SerialName("type") val type: Int? = null,
@SerialName("group_id") val groupId: Int? = null,
@SerialName("group_photo") val groupPhoto: String? = null,
@SerialName("checkins") val checkinsCount: Int? = null,
@SerialName("total_checkins") val totalCheckinsCount: Int? = null,
@SerialName("address") val address: String? = null,
@SerialName("is_deleted") val isDeleted: Boolean? = null
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy