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: 223

  • ID: C6701900

Parameters:
  • call (InputGroupCall) – The conference where to broadcast the block.

  • block (bytes) – The block to broadcast.

Returns:

Updates

TL Schema

phone.sendConferenceCallBroadcast#c6701900
call:InputGroupCall
block:bytes

= Updates

Parameter Tree

SendConferenceCallBroadcast
├── callInputGroupCall
│ ├── InputGroupCall
│ │ ├── idlong
│ │ └── access_hashlong
│ ├── InputGroupCallSlug
│ │ └── slugstring
│ └── msg_idint
└── blockbytes

Example

await app.invoke(
    SendConferenceCallBroadcast(
        call=InputGroupCall(
            id=0,
            access_hash=0
        ),
        block=b"data",
    )
)