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
├── pausedtrue (optional)
├── endpointstring
├── source_groupsVector < GroupCallParticipantVideoSourceGroup >
│ ├── semanticsstring
│ └── sourcesVector < int >
└── audio_sourceint (optional)

Example

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