messages.GetPersonalChannelHistory
- class pyrogram.raw.functions.messages.GetPersonalChannelHistory
Telegram API function.
- Details:
Layer:
225ID:
55FB0996
- Parameters:
user_id (
InputUser) – N/Alimit (
int32-bit) – N/Amax_id (
int32-bit) – N/Amin_id (
int32-bit) – N/Ahash (
int64-bit) – N/A
- Returns:
TL Schema
messages.getPersonalChannelHistory#55fb0996
user_id:InputUser
limit:int
max_id:int
min_id:int
hash:long
= messages.Messages
Parameter Tree
GetPersonalChannelHistory
├── user_id →
InputUser│ ├──
InputUserEmpty│ ├──
InputUserSelf│ ├──
InputUser│ │ ├── user_id →
long│ │ └── access_hash →
long│ └──
InputUserFromMessage│ ├── peer →
InputPeer│ │ ├──
InputPeerEmpty│ │ ├──
InputPeerSelf│ │ ├──
InputPeerChat│ │ ├──
InputPeerUser│ │ ├──
InputPeerChannel│ │ ├──
InputPeerUserFromMessage│ │ └──
InputPeerChannelFromMessage│ ├── msg_id →
int│ └── user_id →
long├── limit →
int├── max_id →
int├── min_id →
int└── hash →
longExample
await app.invoke(
GetPersonalChannelHistory(
user_id=await app.resolve_user(chat_id),
limit=0,
max_id=0,
min_id=0,
hash=0,
)
)