UpdateGroupCallChainBlocks

class pyrogram.raw.types.UpdateGroupCallChainBlocks

Contains updates to the blockchain of a conference call, see here » for more info.

Constructor of Update.

Details:
  • Layer: 223

  • ID: A477288F

Parameters:
  • call (InputGroupCall) – The conference call.

  • sub_chain_id (int 32-bit) – Subchain ID.

  • blocks (List of bytes) – Blocks.

  • next_offset (int 32-bit) – Offset of the next block.

TL Schema

updateGroupCallChainBlocks#a477288f
call:InputGroupCall
sub_chain_id:int
blocks:Vector<bytes>
next_offset:int

= Update

Parameter Tree

UpdateGroupCallChainBlocks
├── callInputGroupCall
│ ├── InputGroupCall
│ │ ├── idlong
│ │ └── access_hashlong
│ ├── InputGroupCallSlug
│ │ └── slugstring
│ └── msg_idint
├── sub_chain_idint
├── blocksVector < bytes >
└── next_offsetint

Example

UpdateGroupCallChainBlocks(
    call=InputGroupCall(
        id=0,
        access_hash=0
    ),
    sub_chain_id=0,
    blocks=[b"data"],
    next_offset=0,
)