Interface DecryptGroupCallData

Decrypts group call data received by tgcalls. Request type for Tdjson#decryptGroupCallData.

interface DecryptGroupCallData {
    @type: "decryptGroupCallData";
    data: string;
    data_channel: GroupCallDataChannel;
    group_call_id: number;
    participant_id: MessageSender;
}

Properties

@type: "decryptGroupCallData"
data: string

Data to decrypt.

data_channel: GroupCallDataChannel

Data channel for which data was encrypted; pass null if unknown.

group_call_id: number

Group call identifier. The call must not be a video chat.

participant_id: MessageSender

Identifier of the group call participant, which sent the data.