-
Notifications
You must be signed in to change notification settings - Fork 1
SipEndpoint
Kenan Genjac edited this page Feb 18, 2025
·
3 revisions
extends
Endpoint
Creates a new instance of SipEndpoint
.
-
username
:string
- Username of the participant on this endpoint
let sipEndpoint = new SipEndpoint("username");
console.log(`This endpoints identifier is: ${sipEndpoint.identifier} and the display identifier is: ${sipEndpoint.displayIdentifier}`);
Returns the value of the identifier on this endpoint represented by the participant's username.
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 username.
none
-
string
- Display identifier of the participant on this endpoint
console.log(`Display identifier of the participant on this endpoint: ${endpoint.displayIdentifier}`);