Interface DiscardCall

Discards a call. Request type for Tdjson#discardCall.

interface DiscardCall {
    @type: "discardCall";
    call_id: number;
    connection_id: string;
    duration: number;
    invite_link: string;
    is_disconnected?: boolean;
    is_video?: boolean;
}

Properties

@type: "discardCall"
call_id: number

Call identifier.

connection_id: string

Identifier of the connection used during the call.

duration: number

The call duration, in seconds.

invite_link: string

If the call was upgraded to a group call, pass invite link to the group call.

is_disconnected?: boolean

Pass true if the user was disconnected.

is_video?: boolean

Pass true if the call was a video call.