Interface DiscardCall

Discards a call. Request type for Tdjson#discardCall.

interface DiscardCall {
    @type: "discardCall";
    call_id: number;
    connection_id: string;
    duration: number;
    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.

is_disconnected?: boolean

Pass true if the user was disconnected.

is_video?: boolean

Pass true if the call was a video call.