-
Notifications
You must be signed in to change notification settings - Fork 2
PhoneEndpoint
Adnan Elezović edited this page Aug 4, 2025
·
4 revisions
extends Endpoint
Creates a new instance of PhoneEndpoint.
-
phoneNumber:string- Phone number of the participant on this endpoint
let phoneEndpoint = new PhoneEndpoint("phoneNumber");
console.log(`This endpoints identifier is: ${phoneEndpoint.identifier} and the display identifier is: ${phoneEndpoint.displayIdentifier}`);Returns PHONE as the type of this endpoint.
none
-
EndpointTypeIdentifier of the participant on this endpoint
console.log(`Type of this endpoint: ${endpoint.type}`);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
console.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
console.log(`Display identifier of the participant on this endpoint: ${endpoint.displayIdentifier}`);