Skip to content

messages.updatePinnedForumTopic

Layer 225

Constructor ID: 0x175df251
Returns: Updates

Parameters

NameTypeDescription
peerInputPeer
topic_idint32
pinnedbool

Example

go
result, err := client.Raw(&tg.UpdatePinnedForumTopicRequest{
    peer: nil, // InputPeer
    topic_id: 0,
    pinned: false,
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.