Layer 224
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(42, 42, int64(1234567890)) if err != nil { // handle error } // result is *tg.AccountChatThemes