Skip to content

phone.editGroupCallParticipant

Layer 225

Constructor ID: 0xa5273abf
Returns: Updates

Parameters

NameTypeDescription
callInputGroupCall
participantInputPeer
mutedbool (flags.0, optional)
volumeint32 (flags.1, optional)
raise_handbool (flags.2, optional)
video_stoppedbool (flags.3, optional)
video_pausedbool (flags.4, optional)
presentation_pausedbool (flags.5, optional)

Example

go
result, err := client.Raw(&tg.EditGroupCallParticipantRequest{
    call: nil, // InputGroupCall
    participant: nil, // InputPeer
    muted: false,
    volume: 0,
    raise_hand: false,
    video_stopped: false,
    video_paused: false,
    presentation_paused: false,
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.