Skip to content

messages.editForumTopic

Layer 225

Constructor ID: 0xcecc1134
Returns: Updates

Parameters

NameTypeDescription
peerInputPeer
topic_idint32
titlestring (flags.0, optional)
icon_emoji_idint64 (flags.1, optional)
closedbool (flags.2, optional)
hiddenbool (flags.3, optional)

Example

go
result, err := client.Raw(&tg.EditForumTopicRequest{
    peer: nil, // InputPeer
    topic_id: 0,
    title: "",
    icon_emoji_id: 0,
    closed: false,
    hidden: false,
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.