phone.SendConferenceCallBroadcast
- class pyrogram.raw.functions.phone.SendConferenceCallBroadcast
Broadcast a blockchain block to all members of a conference call, see here » for more info.
- Details:
Layer:
223ID:
C6701900
- Parameters:
call (
InputGroupCall) – The conference where to broadcast the block.block (
bytes) – The block to broadcast.
- Returns:
TL Schema
phone.sendConferenceCallBroadcast#c6701900
call:InputGroupCall
block:bytes
= Updates
Parameter Tree
SendConferenceCallBroadcast
├── call →
InputGroupCall│ ├──
InputGroupCall│ │ ├── id →
long│ │ └── access_hash →
long│ ├──
InputGroupCallSlug│ │ └── slug →
string│ └── msg_id →
int└── block →
bytesExample
await app.invoke(
SendConferenceCallBroadcast(
call=InputGroupCall(
id=0,
access_hash=0
),
block=b"data",
)
)