1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-02 07:55:25 +00:00
tgbotapi/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/buttons/ReplyKeyboardRemove.kt

14 lines
284 B
Kotlin
Raw Normal View History

2020-10-04 11:06:30 +00:00
package dev.inmo.tgbotapi.types.buttons
2018-12-26 08:07:24 +00:00
import kotlinx.serialization.*
2018-12-26 08:07:24 +00:00
@Serializable
data class ReplyKeyboardRemove(
val selective: Boolean? = null
) : KeyboardMarkup {
@SerialName("remove_keyboard")
@Required
@EncodeDefault
2018-12-26 08:07:24 +00:00
val removeKeyboard: Boolean = true
}