2019-04-16 08:45:20 +00:00
|
|
|
package com.github.insanusmokrassar.TelegramBotAPI.requests
|
|
|
|
|
2019-04-16 09:28:07 +00:00
|
|
|
import com.github.insanusmokrassar.TelegramBotAPI.CommonAbstracts.types.MessageAction
|
|
|
|
import com.github.insanusmokrassar.TelegramBotAPI.CommonAbstracts.types.ReplyMarkup
|
2019-04-16 08:45:20 +00:00
|
|
|
import com.github.insanusmokrassar.TelegramBotAPI.requests.abstracts.SimpleRequest
|
|
|
|
import com.github.insanusmokrassar.TelegramBotAPI.types.*
|
|
|
|
import com.github.insanusmokrassar.TelegramBotAPI.types.buttons.InlineKeyboardMarkup
|
|
|
|
import com.github.insanusmokrassar.TelegramBotAPI.types.polls.Poll
|
|
|
|
import kotlinx.serialization.*
|
|
|
|
|
|
|
|
@Serializable
|
|
|
|
data class StopPoll(
|
|
|
|
@SerialName(chatIdField)
|
|
|
|
override val chatId: ChatIdentifier,
|
|
|
|
@SerialName(messageIdField)
|
|
|
|
override val messageId: MessageIdentifier,
|
|
|
|
@SerialName(replyMarkupField)
|
2019-05-10 11:17:47 +00:00
|
|
|
override val replyMarkup: InlineKeyboardMarkup? = null
|
2019-04-16 08:45:20 +00:00
|
|
|
) : MessageAction, SimpleRequest<Poll>, ReplyMarkup {
|
|
|
|
override fun method(): String = "stopPoll"
|
2019-12-02 08:35:37 +00:00
|
|
|
override val resultDeserializer: DeserializationStrategy<Poll>
|
|
|
|
get() = Poll.serializer()
|
|
|
|
override val requestSerializer: SerializationStrategy<*>
|
|
|
|
get() = serializer()
|
2019-04-16 08:45:20 +00:00
|
|
|
}
|