Skip to content

RTCUser

Adnan Arnautović edited this page Jan 26, 2023 · 1 revision

identity

Description

Getter for the identity field.

Returns

  • String - Value of the identity field representing the identity of user (source or destination).

Example

let source = call.source()
let identity = source.identity

displayName

Description

Getter for the displayName field.

Returns

  • String? - Value of the displayName field representing what should be displayed on the device at the call receiving end. nil if display name is not set.

Example

let source = call.source()
let displayName = source.displayName
Clone this wiki locally