Interface CallStatePending

Describes the current call state. Subtype of CallState.

interface CallStatePending {
    @type: "callStatePending";
    is_created?: boolean;
    is_received?: boolean;
}

Properties

@type: "callStatePending"
is_created?: boolean

True, if the call has already been created by the server.

is_received?: boolean

True, if the call has already been received by the other party.