Layer 224
MessagesUpdatePinnedForumTopic
Pin or unpin a forum topic
method
messages.updatePinnedForumTopic#175df251 peer:InputPeer topic_id:int pinned:Bool = Updates;
Parameters
| Name | Type | Description |
|---|---|---|
| Peer | InputPeer | Supergroup |
| TopicId | int | Topic ID |
| Pinned | Bool | Pin status |
Returns
UpdatesGogram Example
// MessagesUpdatePinnedForumTopic - positional arguments result, err := client.MessagesUpdatePinnedForumTopic(&tg.InputPeerUser{UserID: int64(777000)}, 42, true) if err != nil { // handle error } // result is *tg.Updates