phone.EditGroupCallParticipant
- class pyrogram.raw.functions.phone.EditGroupCallParticipant
Edit information about a given group call participant
- Details:
Layer:
223ID:
A5273ABF
- Parameters:
call (
InputGroupCall) – The group callparticipant (
InputPeer) – The group call participant (can also be the user itself)muted (
bool, optional) – Whether to mute or unmute the specified participantvolume (
int32-bit, optional) – New volumeraise_hand (
bool, optional) – Raise or lower handvideo_stopped (
bool, optional) – Start or stop the video streamvideo_paused (
bool, optional) – Pause or resume the video streampresentation_paused (
bool, optional) – Pause or resume the screen sharing stream
- Returns:
TL Schema
phone.editGroupCallParticipant#a5273abf
flags:#
call:InputGroupCall
participant:InputPeer
muted:flags.0?Bool
volume:flags.1?int
raise_hand:flags.2?Bool
video_stopped:flags.3?Bool
video_paused:flags.4?Bool
presentation_paused:flags.5?Bool
= Updates
Parameter Tree
EditGroupCallParticipant
├── call →
InputGroupCall│ ├──
InputGroupCall│ │ ├── id →
long│ │ └── access_hash →
long│ ├──
InputGroupCallSlug│ │ └── slug →
string│ └── msg_id →
int├── participant →
InputPeer│ ├──
InputPeerEmpty│ ├──
InputPeerSelf│ ├──
InputPeerChat│ │ └── chat_id →
long│ ├──
InputPeerUser│ │ ├── user_id →
long│ │ └── access_hash →
long│ ├──
InputPeerChannel│ │ ├── channel_id →
long│ │ └── access_hash →
long│ ├──
InputPeerUserFromMessage│ │ ├── peer →
InputPeer│ │ │ ├──
InputPeerEmpty│ │ │ ├──
InputPeerSelf│ │ │ ├──
InputPeerChat│ │ │ ├──
InputPeerUser│ │ │ ├──
InputPeerChannel│ │ │ ├──
InputPeerUserFromMessage│ │ │ └──
InputPeerChannelFromMessage│ │ ├── msg_id →
int│ │ └── user_id →
long│ ├── peer →
InputPeer│ │ ├──
InputPeerEmpty│ │ ├──
InputPeerSelf│ │ ├──
InputPeerChat│ │ ├──
InputPeerUser│ │ ├──
InputPeerChannel│ │ ├──
InputPeerUserFromMessage│ │ └──
InputPeerChannelFromMessage│ ├── msg_id →
int│ └── channel_id →
long├── muted →
Bool (optional)├── volume →
int (optional)├── raise_hand →
Bool (optional)├── video_stopped →
Bool (optional)├── video_paused →
Bool (optional)└── presentation_paused →
Bool (optional)Example
await app.invoke(
EditGroupCallParticipant(
call=InputGroupCall(
id=0,
access_hash=0
),
participant=await app.resolve_peer(chat_id),
muted=None,
volume=0,
raise_hand=None,
video_stopped=None,
video_paused=None,
presentation_paused=None,
)
)