Raw.phone.EditGroupCallParticipant
Edit information about a given group call participant
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;
export namespace Raw {
export namespace phone {
export class EditGroupCallParticipant {
constructor(params: {
call: Raw.TypeInputGroupCall;
participant: Raw.TypeInputPeer;
muted?: boolean;
volume?: number;
raiseHand?: boolean;
videoStopped?: boolean;
videoPaused?: boolean;
presentationPaused?: boolean;
}) {}
}
}
}
This is a function constructor, you can use it as method when call invoke
Layer: 185
Constructor ID: 0xa5273abf
Property
call
: Raw.TypeInputGroupCallThe group call
participant
: Raw.TypeInputPeerThe group call participant (can also be the user itself)
muted
: boolean or undefinedWhether to mute or unmute the specified participant
volume
: number or undefinedNew volume
raiseHand
: boolean or undefinedRaise or lower hand
videoStopped
: boolean or undefinedStart or stop the video stream
videoPaused
: boolean or undefinedPause or resume the video stream
presentationPaused
: boolean or undefinedPause or resume the screen sharing stream