GroupCallParticipant

class pyrogram.raw.base.GroupCallParticipant

Info about a group call participant

Constructors:

This base type has 1 constructor available.

GroupCallParticipant

Info about a group call participant

TL Schema

groupCallParticipant#2a3dc7ac
flags:#
muted:flags.0?true
left:flags.1?true
can_self_unmute:flags.2?true
just_joined:flags.4?true
versioned:flags.5?true
min:flags.8?true
muted_by_you:flags.9?true
volume_by_admin:flags.10?true
self:flags.12?true
video_joined:flags.15?true
peer:Peer
date:int
active_date:flags.3?int
source:int
volume:flags.7?int
about:flags.11?string
raise_hand_rating:flags.13?long
video:flags.6?GroupCallParticipantVideo
presentation:flags.14?GroupCallParticipantVideo
paid_stars_total:flags.16?long

= GroupCallParticipant

Parameter Tree

GroupCallParticipant
├── muted → true (optional)
├── left → true (optional)
├── can_self_unmute → true (optional)
├── just_joined → true (optional)
├── versioned → true (optional)
├── min → true (optional)
├── muted_by_you → true (optional)
├── volume_by_admin → true (optional)
├── is_self → true (optional)
├── video_joined → true (optional)
├── peer → Peer
│ ├── PeerUser
│ │ └── user_id → long
│ ├── PeerChat
│ │ └── chat_id → long
│ └── PeerChannel
│ └── channel_id → long
├── date → int
├── active_date → int (optional)
├── source → int
├── volume → int (optional)
├── about → string (optional)
├── raise_hand_rating → long (optional)
├── video → GroupCallParticipantVideo (optional)
│ ├── paused → true (optional)
│ ├── endpoint → string
│ ├── source_groups → Vector < GroupCallParticipantVideoSourceGroup >
│ │ ├── semantics → string
│ │ └── sources → Vector < int >
│ └── audio_source → int (optional)
├── presentation → GroupCallParticipantVideo (optional)
│ ├── paused → true (optional)
│ ├── endpoint → string
│ ├── source_groups → Vector < GroupCallParticipantVideoSourceGroup >
│ │ ├── semantics → string
│ │ └── sources → Vector < int >
│ └── audio_source → int (optional)
└── paid_stars_total → long (optional)

Example

GroupCallParticipant(
    muted=None,
    left=None,
    can_self_unmute=None,
    just_joined=None,
    versioned=None,
    min=None,
    muted_by_you=None,
    volume_by_admin=None,
    is_self=None,
    video_joined=None,
    peer=PeerUser(user_id=0),
    date=0,
    active_date=0,
    source=0,
    volume=0,
    about="text",
    raise_hand_rating=0,
    video=GroupCallParticipantVideo(
        paused=None,
        endpoint="text",
        source_groups=[
                GroupCallParticipantVideoSourceGroup(
                    semantics="text",
                    sources=[0]
                )
            ],
        audio_source=None
    ),
    presentation=GroupCallParticipantVideo(
        paused=None,
        endpoint="text",
        source_groups=[
                GroupCallParticipantVideoSourceGroup(
                    semantics="text",
                    sources=[0]
                )
            ],
        audio_source=None
    ),
    paid_stars_total=0,
)