1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-07-01 13:57:48 +00:00
tgbotapi/src/main/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/buttons/ForceReply.kt
2019-04-13 09:38:25 +08:00

12 lines
259 B
Kotlin

package com.github.insanusmokrassar.TelegramBotAPI.types.buttons
import kotlinx.serialization.*
@Serializable
data class ForceReply(
val selective: Boolean? = null
) : KeyboardMarkup {
@SerialName("force_reply")
val forceReply: Boolean = true
}