answerInlineQuery

suspend fun TelegramBot.answerInlineQuery(    inlineQueryID: InlineQueryId,     results: List<InlineQueryResult> = emptyList(),     cachedTime: Int? = null,     isPersonal: Boolean? = null,     nextOffset: String? = null,     button: InlineQueryResultsButton? = null): Boolean
suspend fun TelegramBot.answerInlineQuery(    inlineQuery: InlineQuery,     results: List<InlineQueryResult> = emptyList(),     cachedTime: Int? = null,     isPersonal: Boolean? = null,     nextOffset: String? = null,     button: InlineQueryResultsButton? = null): Boolean
suspend fun TelegramBot.answerInlineQuery(    inlineQueryID: InlineQueryId,     results: List<InlineQueryResult> = emptyList(),     cachedTime: Int? = null,     isPersonal: Boolean? = null,     nextOffset: String? = null,     switchPmText: String?,     switchPmParameter: String?): Boolean
suspend fun TelegramBot.answerInlineQuery(    inlineQuery: InlineQuery,     results: List<InlineQueryResult> = emptyList(),     cachedTime: Int? = null,     isPersonal: Boolean? = null,     nextOffset: String? = null,     switchPmText: String?,     switchPmParameter: String?): Boolean