Layer 224
method Users
account.getUniqueGiftChatThemes#e42ce9c9 offset:string limit:int hash:long = account.ChatThemes;

Parameters

Name Type Description
Offset string Offset for pagination, intially an empty string, then equal the value of the last returned account. chat Themes. next_offset (if set).
Limit int Maximum number of results to return, see pagination. Note that the server may return less than limit results, even if the actual number of remaining results is >= limit, paginate to fetch them all.
Hash long Hash from a previously returned account. chat Themes constructor, to avoid returning any result if the theme list hasn't changed.

Gogram Example

// AccountGetUniqueGiftChatThemes - positional arguments
result, err := client.AccountGetUniqueGiftChatThemes("Hello, World!", 42, int64(1234567890))
if err != nil {
    // handle error
}
// result is *tg.AccountChatThemes