contacts.GetBlocked
- class pyrogram.raw.functions.contacts.GetBlocked
Returns the list of blocked users.
- Details:
Layer:
223ID:
9A868F80
- Parameters:
offset (
int32-bit) – The number of list elements to be skippedlimit (
int32-bit) – The number of list elements to be returnedmy_stories_from (
bool, optional) – Whether to fetch the story blocklist; if not set, will fetch the main blocklist. See here » for differences between the two.
- Returns:
TL Schema
contacts.getBlocked#9a868f80
flags:#
my_stories_from:flags.0?true
offset:int
limit:int
= contacts.Blocked
Parameter Tree
GetBlocked
├── my_stories_from →
true (optional)├── offset →
int└── limit →
intExample
await app.invoke(
GetBlocked(
my_stories_from=None,
offset=0,
limit=0,
)
)