IncomingCallContext

public protocol IncomingCallContext

The caller information provided by the platform in the push notification payload.

  • The caller’s user identifier (user01, user02, etc).

    Declaration

    Swift

    var callerId: String { get }
  • The caller’s display name.

    Declaration

    Swift

    var callerName: String? { get }
  • The notification time (local, delivered date, millisecond).

    Declaration

    Swift

    var localTimestamp: UInt { get }
  • The notification time (backend, post date, millisecond).

    Declaration

    Swift

    var remoteTimestamp: UInt { get }
  • The call start time (backend, millisecond).

    Declaration

    Swift

    var callStartTimestamp: UInt { get }