Module tdlight.api

Class TdApi.JoinGroupCall

Enclosing class:
TdApi

public static final class TdApi.JoinGroupCall extends TdApi.Function<TdApi.Text>
Joins an active group call. Returns join response payload for tgcalls.

Returns Text

  • Field Details

    • groupCallId

      public int groupCallId
      Group call identifier.
    • participantId

      public TdApi.MessageSender participantId
      Identifier of a group call participant, which will be used to join the call; pass null to join as self; video chats only.
    • audioSourceId

      public int audioSourceId
      Caller audio channel synchronization source identifier; received from tgcalls.
    • payload

      public String payload
      Group call join payload; received from tgcalls.
    • isMuted

      public boolean isMuted
      True, if the user's microphone is muted.
    • isMyVideoEnabled

      public boolean isMyVideoEnabled
      True, if the user's video is enabled.
    • inviteHash

      public String inviteHash
      If non-empty, invite hash to be used to join the group call without being muted by administrators.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • JoinGroupCall

      public JoinGroupCall()
      Joins an active group call. Returns join response payload for tgcalls.

      Returns Text

    • JoinGroupCall

      public JoinGroupCall(int groupCallId, TdApi.MessageSender participantId, int audioSourceId, String payload, boolean isMuted, boolean isMyVideoEnabled, String inviteHash)
      Joins an active group call. Returns join response payload for tgcalls.

      Returns Text

      Parameters:
      groupCallId - int Group call identifier.
      participantId - MessageSender Identifier of a group call participant, which will be used to join the call; pass null to join as self; video chats only.
      audioSourceId - int Caller audio channel synchronization source identifier; received from tgcalls.
      payload - String Group call join payload; received from tgcalls.
      isMuted - boolean True, if the user's microphone is muted.
      isMyVideoEnabled - boolean True, if the user's video is enabled.
      inviteHash - String If non-empty, invite hash to be used to join the group call without being muted by administrators.
    • JoinGroupCall

      public JoinGroupCall(DataInput input) throws IOException
      Joins an active group call. Returns join response payload for tgcalls.

      Returns Text

      Throws:
      IOException
  • Method Details