Layer 220
AccountGetUniqueGiftChatThemes
Obtain all chat themes associated to owned collectible gifts.
method
Users
account.getUniqueGiftChatThemes#fe74ef9f offset:int limit:int hash:long = account.ChatThemes;
Parameters
| Name | Type | Description |
|---|---|---|
| Offset | int | Offset for pagination. |
| Limit | int | Maximum number of results to return, see pagination |
| Hash | long | Hash from a previously returned account. chat Themes constructor, to avoid returning any result if the theme list hasn't changed. |
Returns
account.ChatThemesGogram Example
// AccountGetUniqueGiftChatThemes - positional arguments result, err := client.AccountGetUniqueGiftChatThemes(0, 0, int64(0)) if err != nil { // handle error } // result is *tg.AccountChatThemes