mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2025-09-02 22:59:48 +00:00
toChatId extensions adding
This commit is contained in:
@@ -7,6 +7,7 @@
|
||||
* `SwitchInlineQueryCurrentChatInlineKeyboardButton#switchInlineQueryCurrentChat` field fixed
|
||||
* `InlineKeyboardButton` now is sealed class and all its possible realisations are inside of its class file
|
||||
* `String#asUsername` method renamed to `String#toUsername`
|
||||
* Several `toChatId` extensions added
|
||||
|
||||
## 0.15.0
|
||||
|
||||
|
@@ -20,6 +20,8 @@ val ChatId.link: String
|
||||
typealias UserId = ChatId
|
||||
|
||||
fun Identifier.toChatId(): ChatId = ChatId(this)
|
||||
fun Int.toChatId(): ChatId = toLong().toChatId()
|
||||
fun Byte.toChatId(): ChatId = toLong().toChatId()
|
||||
|
||||
@Serializable(ChatIdentifierSerializer::class)
|
||||
data class Username(
|
||||
|
Reference in New Issue
Block a user