UpdateGroupCallParticipants

class pyrogram.raw.types.UpdateGroupCallParticipants

The participant list of a certain group call has changed

Constructor of Update.

Details:
  • Layer: 223

  • ID: F2EBDB4E

Parameters:

TL Schema

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

= Update

Parameter Tree

UpdateGroupCallParticipants
├── callInputGroupCall
│ ├── InputGroupCall
│ │ ├── idlong
│ │ └── access_hashlong
│ ├── InputGroupCallSlug
│ │ └── slugstring
│ └── msg_idint
├── participantsVector < GroupCallParticipant >
│ └── GroupCallParticipant
│ ├── mutedtrue (optional)
│ ├── lefttrue (optional)
│ ├── can_self_unmutetrue (optional)
│ ├── just_joinedtrue (optional)
│ ├── versionedtrue (optional)
│ ├── mintrue (optional)
│ ├── muted_by_youtrue (optional)
│ ├── volume_by_admintrue (optional)
│ ├── is_selftrue (optional)
│ ├── video_joinedtrue (optional)
│ ├── peerPeer
│ │ ├── PeerUser
│ │ │ └── user_idlong
│ │ ├── PeerChat
│ │ │ └── chat_idlong
│ │ └── PeerChannel
│ │ └── channel_idlong
│ ├── dateint
│ ├── active_dateint (optional)
│ ├── sourceint
│ ├── volumeint (optional)
│ ├── aboutstring (optional)
│ ├── raise_hand_ratinglong (optional)
│ ├── videoGroupCallParticipantVideo (optional)
│ │ └── GroupCallParticipantVideo
│ │ ├── pausedtrue (optional)
│ │ ├── endpointstring
│ │ ├── source_groupsVector < GroupCallParticipantVideoSourceGroup >
│ │ └── audio_sourceint (optional)
│ ├── presentationGroupCallParticipantVideo (optional)
│ │ └── GroupCallParticipantVideo
│ │ ├── pausedtrue (optional)
│ │ ├── endpointstring
│ │ ├── source_groupsVector < GroupCallParticipantVideoSourceGroup >
│ │ └── audio_sourceint (optional)
│ └── paid_stars_totallong (optional)
└── versionint

Example

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