Interface ToggleGroupCallParticipantIsHandRaised

Toggles whether a group call participant hand is rased. Request type for Tdjson#toggleGroupCallParticipantIsHandRaised.

interface ToggleGroupCallParticipantIsHandRaised {
    @type: "toggleGroupCallParticipantIsHandRaised";
    group_call_id: number;
    is_hand_raised?: boolean;
    participant_id: MessageSender;
}

Properties

@type: "toggleGroupCallParticipantIsHandRaised"
group_call_id: number

Group call identifier.

is_hand_raised?: boolean

Pass true if the user's hand needs to be raised. Only self hand can be raised. Requires groupCall.can_be_managed group call flag to lower other's hand.

participant_id: MessageSender

Participant identifier.