Package org.drinkless.tdlib
Class TdApi.DecryptGroupCallData
- Enclosing class:
- TdApi
Decrypts group call data received by tgcalls.
Returns Data
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Identifier uniquely determining type of the object.byte[]
Data to decrypt.Data channel for which data was encrypted; pass null if unknown.int
Group call identifier.Identifier of the group call participant, which sent the data. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which decrypts group call data received by tgcalls.DecryptGroupCallData
(int groupCallId, TdApi.MessageSender participantId, TdApi.GroupCallDataChannel dataChannel, byte[] data) Creates a function, which decrypts group call data received by tgcalls. -
Method Summary
Modifier and TypeMethodDescriptionint
Returns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
Field Details
-
groupCallId
public int groupCallIdGroup call identifier. The call must not be a video chat. -
participantId
Identifier of the group call participant, which sent the data. -
dataChannel
Data channel for which data was encrypted; pass null if unknown. -
data
public byte[] dataData to decrypt. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
DecryptGroupCallData
public DecryptGroupCallData()Default constructor for a function, which decrypts group call data received by tgcalls.Returns
Data
-
DecryptGroupCallData
public DecryptGroupCallData(int groupCallId, TdApi.MessageSender participantId, TdApi.GroupCallDataChannel dataChannel, byte[] data) Creates a function, which decrypts group call data received by tgcalls.Returns
Data
- Parameters:
groupCallId
- Group call identifier. The call must not be a video chat.participantId
- Identifier of the group call participant, which sent the data.dataChannel
- Data channel for which data was encrypted; pass null if unknown.data
- Data to decrypt.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.Object
Returns an identifier uniquely determining type of the object.- Specified by:
getConstructor
in classTdApi.Object
- Returns:
- this.CONSTRUCTOR
-