Interface Call

Describes a call.

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

Properties

@type: "call"
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.