tgbotapi/tgbotapi.api/src/commonMain/kotlin/dev/inmo/tgbotapi/extensions/api/chat/ExportChatInviteLink.kt

15 lines
469 B
Kotlin
Raw Normal View History

package dev.inmo.tgbotapi.extensions.api.chat
2020-02-15 09:33:04 +00:00
2020-10-04 11:06:30 +00:00
import dev.inmo.tgbotapi.bot.TelegramBot
import dev.inmo.tgbotapi.requests.chat.ExportChatInviteLink
import dev.inmo.tgbotapi.types.ChatIdentifier
import dev.inmo.tgbotapi.types.chat.abstracts.PublicChat
2020-02-15 09:33:04 +00:00
suspend fun TelegramBot.exportChatInviteLink(
2020-02-15 09:33:04 +00:00
chatId: ChatIdentifier
) = execute(ExportChatInviteLink(chatId))
suspend fun TelegramBot.exportChatInviteLink(
2020-02-15 09:33:04 +00:00
chat: PublicChat
) = exportChatInviteLink(chat.id)