messages.GetForumTopicsByID
- class pyrogram.raw.functions.messages.GetForumTopicsByID
{schema}
- Details:
Layer:
223ID:
AF0A4A08
- Parameters:
peer (
InputPeer)topics (List of
int32-bit)
- Returns:
TL Schema
messages.getForumTopicsByID#af0a4a08
peer:InputPeer
topics:Vector<int>
= messages.ForumTopics
Parameter Tree
GetForumTopicsByID
├── peer →
InputPeer│ ├──
InputPeerEmpty│ ├──
InputPeerSelf│ ├──
InputPeerChat│ │ └── chat_id →
long│ ├──
InputPeerUser│ │ ├── user_id →
long│ │ └── access_hash →
long│ ├──
InputPeerChannel│ │ ├── channel_id →
long│ │ └── access_hash →
long│ ├──
InputPeerUserFromMessage│ │ ├── peer →
InputPeer│ │ │ ├──
InputPeerEmpty│ │ │ ├──
InputPeerSelf│ │ │ ├──
InputPeerChat│ │ │ ├──
InputPeerUser│ │ │ ├──
InputPeerChannel│ │ │ ├──
InputPeerUserFromMessage│ │ │ └──
InputPeerChannelFromMessage│ │ ├── msg_id →
int│ │ └── user_id →
long│ ├── peer →
InputPeer│ │ ├──
InputPeerEmpty│ │ ├──
InputPeerSelf│ │ ├──
InputPeerChat│ │ ├──
InputPeerUser│ │ ├──
InputPeerChannel│ │ ├──
InputPeerUserFromMessage│ │ └──
InputPeerChannelFromMessage│ ├── msg_id →
int│ └── channel_id →
long└── topics →
Vector < int >Example
await app.invoke(
GetForumTopicsByID(
peer=await app.resolve_peer(chat_id),
topics=[0],
)
)