sinch-rtc
    Preparing search index...

    Interface CallNotificationResult

    The CallNotificationResult is used to indicate the result of a relayed push notification SinchClient.relayRemotePushNotification The CallNotificationResult includes call related information.

    interface CallNotificationResult {
        callId: string;
        domain: Domain;
        headers: undefined | Record<string, string>;
        remoteUserId: string;
        hasTimedOut(): boolean;
        isVideoOffered(): boolean;
    }
    Index

    Properties

    callId: string

    Returns the call identifier.

    the call identifier.

    domain: Domain

    Returns the remote domain.

    the remote domain.

    headers: undefined | Record<string, string>

    Returns headers associated with the call.

    empty string if no headers were set by the call initiator.

    remoteUserId: string

    Returns the remote user identifier.

    the remote user identifier.

    Methods

    • Indicates whether the call has timed out.

      Returns boolean

      true if the call has timed out, otherwise false.

    • Returns whether the caller offered video.

      Returns boolean

      true if the caller offered video, false otherwise.