Layer 227
constructor
account.chatThemes#be098173 flags:# hash:long themes:Vector<ChatTheme> chats:Vector<Chat> users:Vector<User> next_offset:flags.0?string = account.ChatThemes;

Parameters

Name Type Description
Hash long Hash to pass to the method that returned this constructor, to avoid refetching the result if it hasn't changed.
Themes Vector < ChatTheme > Themes.
Chats Vector < Chat > Chats mentioned in the themes field.
Users Vector < User > Users mentioned in the themes field.
NextOffset flags .0? string Next offset for pagination.

Gogram Example

// Creating AccountChatThemesObj constructor
obj := &tg.AccountChatThemesObj{
    Hash: int64(1234567890),
    Themes: &tg.VectorChatTheme{},
    Chats: &tg.VectorChat{},
    Users: &tg.VectorUser{},
    NextOffset: "Hello, World!",
}