đ§ get_chat_gifts
Use this method to get the list of gifts received by a chat.
âī¸ Parameters
chat_id(int): Unique identifier of the target chatoffset(str) (optional): Offset of the first entry to return; use empty string for first chunklimit(int) (optional): Maximum number of gifts to return; 1-100, defaults to 100
đ˛ Returns
OwnedGifts
đ Examples
-đĒĢ Required Parameters
await bot.get_chat_gifts(
chat_id=your_chat_id_here
)
-đ All Parameters
await bot.get_chat_gifts(
chat_id=your_chat_id_here,
offset=your_offset_here,
limit=your_limit_here
)