Package org.drinkless.tdlib
Class TdApi.CallProtocol
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.CallProtocol
-
- Enclosing class:
- TdApi
public static class TdApi.CallProtocol extends TdApi.Object
Specifies the supported call protocols.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.String[]libraryVersionsList of supported tgcalls versions.intmaxLayerThe maximum supported API layer; use 65.intminLayerThe minimum supported API layer; use 65.booleanudpP2pTrue, if UDP peer-to-peer connections are supported.booleanudpReflectorTrue, if connection through UDP reflectors is supported.
-
Constructor Summary
Constructors Constructor Description CallProtocol()Specifies the supported call protocols.CallProtocol(boolean udpP2p, boolean udpReflector, int minLayer, int maxLayer, String[] libraryVersions)Specifies the supported call protocols.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
udpP2p
public boolean udpP2p
True, if UDP peer-to-peer connections are supported.
-
udpReflector
public boolean udpReflector
True, if connection through UDP reflectors is supported.
-
minLayer
public int minLayer
The minimum supported API layer; use 65.
-
maxLayer
public int maxLayer
The maximum supported API layer; use 65.
-
libraryVersions
public String[] libraryVersions
List of supported tgcalls versions.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CallProtocol
public CallProtocol()
Specifies the supported call protocols.
-
CallProtocol
public CallProtocol(boolean udpP2p, boolean udpReflector, int minLayer, int maxLayer, String[] libraryVersions)Specifies the supported call protocols.- Parameters:
udpP2p- True, if UDP peer-to-peer connections are supported.udpReflector- True, if connection through UDP reflectors is supported.minLayer- The minimum supported API layer; use 65.maxLayer- The maximum supported API layer; use 65.libraryVersions- List of supported tgcalls versions.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-