GroupCallParticipantVideo

class pyrogram.raw.base.GroupCallParticipantVideo

Info about a video stream

Constructors:

This base type has 1 constructor available.

GroupCallParticipantVideo

Info about a video stream

TL Schema

groupCallParticipantVideo#67753ac8
flags:#
paused:flags.0?true
endpoint:string
source_groups:Vector<GroupCallParticipantVideoSourceGroup>
audio_source:flags.1?int

= GroupCallParticipantVideo

Parameter Tree

GroupCallParticipantVideo
├── paused → true (optional)
├── endpoint → string
├── source_groups → Vector < GroupCallParticipantVideoSourceGroup >
│ ├── semantics → string
│ └── sources → Vector < int >
└── audio_source → int (optional)

Example

GroupCallParticipantVideo(
    paused=None,
    endpoint="text",
    source_groups=[
            GroupCallParticipantVideoSourceGroup(
                semantics="text",
                sources=[0]
            )
        ],
    audio_source=0,
)