Interface Call

Describes a call.

interface Call {
    @type: "call";
    group_call_id: number;
    id: number;
    is_outgoing?: boolean;
    is_video?: boolean;
    state: CallState;
    user_id: number;
}

Properties

@type: "call"
group_call_id: number

Identifier of the group call associated with the call; 0 if the group call isn't created yet. The group call can be received through the method getGroupCall.

id: number

Call identifier, not persistent.

is_outgoing?: boolean

True, if the call is outgoing.

is_video?: boolean

True, if the call is a video call.

state: CallState

Call state.

user_id: number

User identifier of the other call participant.