mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2025-09-03 23:29:33 +00:00
add support of getStarTransactions
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package dev.inmo.tgbotapi.extensions.api.get
|
||||
|
||||
import dev.inmo.tgbotapi.bot.TelegramBot
|
||||
import dev.inmo.tgbotapi.requests.get.GetStarTransactions
|
||||
|
||||
suspend fun TelegramBot.getStarTransactions(
|
||||
offset: Int? = null,
|
||||
limit: Int? = null,
|
||||
) = execute(
|
||||
GetStarTransactions(
|
||||
offset = offset,
|
||||
limit = limit
|
||||
)
|
||||
)
|
Reference in New Issue
Block a user