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

  • 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
├── call → InputGroupCall
│ ├── InputGroupCall
│ │ ├── id → long
│ │ └── access_hash → long
│ ├── InputGroupCallSlug
│ │ └── slug → string
│ └── msg_id → int
├── sub_chain_id → int
├── blocks → Vector < bytes >
└── next_offset → int

Example

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