all repos — telegram-bot-api @ 9fd1f7e399b98750ec9d7174dd78d01203a32714

Golang bindings for the Telegram Bot API

Added NewDeleteMessages method to batch DeleteMessage requests within the same chat, create object and call bot.Request(object)
Etherdrake 67021215+Etherdrake@users.noreply.github.com
Wed, 14 Feb 2024 12:35:58 -0500
commit

9fd1f7e399b98750ec9d7174dd78d01203a32714

parent

63e5c59035bfde1a7babea214eceb0e2e60e816f

1 files changed, 13 insertions(+), 0 deletions(-)

jump to
M helper_methods.gohelper_methods.go

@@ -40,6 +40,19 @@ },

} } +// NewDeleteMessages creates a request to delete multiple messages. The messages have to be +// in the same chat. Provide the message ids as an array of integers +func NewDeleteMessages(chatID int64, messageIDs []int) DeleteMessagesConfig { + return DeleteMessagesConfig{ + BaseChatMessages: BaseChatMessages{ + ChatConfig: ChatConfig{ + ChatID: chatID, + }, + MessageIDs: messageIDs, + }, + } +} + // NewMessageToChannel creates a new Message that is sent to a channel // by username. //