
eu.vendeli.tgbot.api.forum.DeleteForumTopic.kt Maven / Gradle / Ivy
@file:Suppress("MatchingDeclarationName")
package eu.vendeli.tgbot.api.forum
import eu.vendeli.tgbot.interfaces.ActionState
import eu.vendeli.tgbot.interfaces.SimpleAction
import eu.vendeli.tgbot.interfaces.TgAction
import eu.vendeli.tgbot.types.internal.TgMethod
import eu.vendeli.tgbot.utils.getReturnType
/**
* Use this method to delete a forum topic along with all its messages in a forum supergroup chat.
* The bot must be an administrator in the chat for this to work
* and must have the canDeleteMessages administrator rights.
* Returns True on success.
*/
class DeleteForumTopicAction(messageThreadId: Int) : SimpleAction, ActionState() {
override val TgAction.method: TgMethod
get() = TgMethod("deleteForumTopic")
override val TgAction.returnType: Class
get() = getReturnType()
init {
parameters["message_thread_id"] = messageThreadId
}
}
/**
* Use this method to delete a forum topic along with all its messages in a forum supergroup chat.
* The bot must be an administrator in the chat for this to work
* and must have the canDeleteMessages administrator rights.
* Returns True on success.
*/
fun deleteForumTopic(messageThreadId: Int) = DeleteForumTopicAction(messageThreadId)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy