I cannot understand what parameter offset did in this function and what's kind of values accept? I try use integers but there is no effect.
from pyrogram import Client, filters
import time
app = Client(
"my_account",
api_id=api_id, api_hash=api_hash,
)
async def main():
async with app:
bot_results = await app.get_inline_bot_results(
"some_bot_name",
query="some_query",
offset="???"
)
app.run(main())