All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.github.insanusmokrassar.TelegramBotAPI.extensions.utils.CallbackQueryConversations.kt Maven / Gradle / Ivy

The newest version!
package com.github.insanusmokrassar.TelegramBotAPI.extensions.utils

import com.github.insanusmokrassar.TelegramBotAPI.types.CallbackQuery.*
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.mapNotNull

fun  Flow.onlyMessageDataCallbackQueries() = mapNotNull {
    it as? MessageDataCallbackQuery
}
fun  Flow.onlyInlineMessageIdDataCallbackQueries() = mapNotNull {
    it as? InlineMessageIdDataCallbackQuery
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy