Raw.phone.JoinGroupCall

Raw.phone.JoinGroupCall

Join a group call

phone.joinGroupCall#b132ff7b flags:# muted:flags.0?true video_stopped:flags.2?true call:InputGroupCall join_as:InputPeer invite_hash:flags.1?string params:DataJSON = Updates;
export namespace Raw {
  export namespace phone {
    export class JoinGroupCall {
      constructor(params: {
        muted?: boolean;
        videoStopped?: boolean;
        call: Raw.TypeInputGroupCall;
        joinAs: Raw.TypeInputPeer;
        inviteHash?: string;
        params: Raw.TypeDataJSON;
      }) {}
    }
  }
}

This is a function constructor, you can use it as method when call invoke

Layer: 185
Constructor ID: 0xb132ff7b

Property

  • muted : boolean or undefined

    If set, the user will be muted by default upon joining.

  • videoStopped : boolean or undefined

    If set, the user’s video will be disabled by default upon joining.

  • call : Raw.TypeInputGroupCall

    The group call

  • joinAs : Raw.TypeInputPeer

    Join the group call, presenting yourself as the specified user/channel

  • inviteHash : string or undefined

    The invitation hash from the invite link, if provided allows speaking in a livestream or muted group chat.

  • params : Raw.TypeDataJSON

    Webrtc parameters

Results

Raw.TypeUpdates