phone.GetGroupCallChainBlocks
- class pyrogram.raw.functions.phone.GetGroupCallChainBlocks
Fetch the blocks of a conference blockchain ».
- Details:
Layer:
223ID:
EE9F88A6
- Parameters:
call (
InputGroupCall) – The conference.sub_chain_id (
int32-bit) – Subchain ID.offset (
int32-bit) – Offset for pagination.limit (
int32-bit) – Maximum number of blocks to return in this call, see pagination
- Returns:
TL Schema
phone.getGroupCallChainBlocks#ee9f88a6
call:InputGroupCall
sub_chain_id:int
offset:int
limit:int
= Updates
Parameter Tree
GetGroupCallChainBlocks
├── call →
InputGroupCall│ ├──
InputGroupCall│ │ ├── id →
long│ │ └── access_hash →
long│ ├──
InputGroupCallSlug│ │ └── slug →
string│ └── msg_id →
int├── sub_chain_id →
int├── offset →
int└── limit →
intExample
await app.invoke(
GetGroupCallChainBlocks(
call=InputGroupCall(
id=0,
access_hash=0
),
sub_chain_id=0,
offset=0,
limit=0,
)
)