Module tdlight.api

Class TdApi.CallStateReady

Enclosing class:
TdApi

public static final class TdApi.CallStateReady extends TdApi.CallState
The call is ready to use.
  • Field Details

    • protocol

      public TdApi.CallProtocol protocol
      Call protocols supported by the peer.
    • servers

      public TdApi.CallServer[] servers
      List of available call servers.
    • config

      public String config
      A JSON-encoded call config.
    • encryptionKey

      public byte[] encryptionKey
      Call encryption key.
    • emojis

      public String[] emojis
      Encryption key emojis fingerprint.
    • allowP2p

      public boolean allowP2p
      True, if peer-to-peer connection is allowed by users privacy settings.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • CallStateReady

      public CallStateReady()
      The call is ready to use.
    • CallStateReady

      public CallStateReady(TdApi.CallProtocol protocol, TdApi.CallServer[] servers, String config, byte[] encryptionKey, String[] emojis, boolean allowP2p)
      The call is ready to use.
      Parameters:
      protocol - CallProtocol Call protocols supported by the peer.
      servers - CallServer[] List of available call servers.
      config - String A JSON-encoded call config.
      encryptionKey - byte[] Call encryption key.
      emojis - String[] Encryption key emojis fingerprint.
      allowP2p - boolean True, if peer-to-peer connection is allowed by users privacy settings.
    • CallStateReady

      public CallStateReady(DataInput input) throws IOException
      The call is ready to use.
      Throws:
      IOException
  • Method Details