-
Notifications
You must be signed in to change notification settings - Fork 3
PhoneEndpoint
Kenan Genjac edited this page Feb 18, 2025
·
2 revisions
extends
Endpoint
Creates a new instance of PhoneEndpoint
.
-
phoneNumber
:String
- Participants phone number on this endpoint
-
PhoneEndpoint
- A new instance ofPhoneEndpoint
let phoneEndpoint = PhoneEndpoint("phoneNumber");
os_log("PhoneEndpoint identifier: %@ and displayIdentifier: %@", phoneEndpoint.identifier(), phoneEndpoint.displayIdentifier());
Returns the value of the identifier on this endpoint represented by the participant's phone number.
none
-
String
- Identifier of the participant on this endpoint
os_log("Identifier of the participant on this endpoint: %@", endpoint.identifier());
Returns the value of the display identifier on this endpoint represented by the participant's phone number.
none
-
String?
- Display identifier of the participant on this endpoint
os_log("Display identifier of the participant on this endpoint: %@", endpoint.displayIdentifier());