account.GetUniqueGiftChatThemes

class pyrogram.raw.functions.account.GetUniqueGiftChatThemes

Obtain all chat themes » associated to owned collectible gifts ».

Details:
  • Layer: 223

  • ID: E42CE9C9

Parameters:
  • offset (str) – Offset for pagination.

  • limit (int 32-bit) – Maximum number of results to return, see pagination

  • hash (int 64-bit) – Hash from a previously returned account.chatThemes constructor, to avoid returning any result if the theme list hasn’t changed.

Returns:

account.ChatThemes

TL Schema

account.getUniqueGiftChatThemes#e42ce9c9
offset:string
limit:int
hash:long

= account.ChatThemes

Parameter Tree

GetUniqueGiftChatThemes
├── offsetstring
├── limitint
└── hashlong

Example

await app.invoke(
    GetUniqueGiftChatThemes(
        offset="text",
        limit=0,
        hash=0,
    )
)