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

commonMain.dev.inmo.tgbotapi.extensions.utils.CallbackQueryConversations.kt Maven / Gradle / Ivy

There is a newer version: 20.0.1
Show newest version
package dev.inmo.tgbotapi.extensions.utils

import dev.inmo.tgbotapi.types.queries.callback.*
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