UpdateGroupCallParticipants

class pyrogram.raw.types.UpdateGroupCallParticipants

The participant list of a certain group call has changed

Constructor of Update.

Details:
  • Layer: 227

  • ID: F2EBDB4E

Parameters:

TL Schema

updateGroupCallParticipants#f2ebdb4e
call:InputGroupCall
participants:Vector<GroupCallParticipant>
version:int

= Update

Parameter Tree

UpdateGroupCallParticipants
├── call → InputGroupCall
│ ├── InputGroupCall
│ │ ├── id → long
│ │ └── access_hash → long
│ ├── InputGroupCallSlug
│ │ └── slug → string
│ └── msg_id → int
├── participants → Vector < GroupCallParticipant >
│ └── 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)
│ │ └── GroupCallParticipantVideo
│ │ ├── paused → true (optional)
│ │ ├── endpoint → string
│ │ ├── source_groups → Vector < GroupCallParticipantVideoSourceGroup >
│ │ └── audio_source → int (optional)
│ ├── presentation → GroupCallParticipantVideo (optional)
│ │ └── GroupCallParticipantVideo
│ │ ├── paused → true (optional)
│ │ ├── endpoint → string
│ │ ├── source_groups → Vector < GroupCallParticipantVideoSourceGroup >
│ │ └── audio_source → int (optional)
│ └── paid_stars_total → long (optional)
└── version → int

Example

UpdateGroupCallParticipants(
    call=InputGroupCall(
        id=0,
        access_hash=0
    ),
    participants=[
            GroupCallParticipant(
                peer=PeerUser(user_id=0),
                date=0,
                source=0
            )
        ],
    version=0,
)