bots.GetAccessSettings
- class pyrogram.raw.functions.bots.GetAccessSettings
Telegram API function.
- Details:
Layer:
225ID:
213853A3
- Parameters:
bot (
InputUser) – N/A- Returns:
TL Schema
bots.getAccessSettings#213853a3
bot:InputUser
= bots.AccessSettings
Parameter Tree
GetAccessSettings
└── bot →
InputUser├──
InputUserEmpty├──
InputUserSelf├──
InputUser│ ├── user_id →
long│ └── access_hash →
long├── peer →
InputPeer│ ├──
InputPeerEmpty│ ├──
InputPeerSelf│ ├──
InputPeerChat│ ├──
InputPeerUser│ ├──
InputPeerChannel│ ├──
InputPeerUserFromMessage├── msg_id →
int└── user_id →
longExample
await app.invoke(
GetAccessSettings(
bot=await app.resolve_user(chat_id),
)
)