TransferCallFeature interface
Feature for call transfer.
- Extends
Inherited Properties
name | The feature name. |
Methods
off("transfer |
Unsubscribe function for transferAccepted event |
on("transfer |
Subscribe function for transferAccepted event |
transfer(Transfer |
Transfer a call to a another call |
transfer(Transfer |
Transfer a call to a participant |
transfer(Transfer |
Transfer a call to voicemail |
Inherited Methods
dispose() |
Inherited Property Details
name
Method Details
off("transferAccepted", TransferAcceptedEvent)
Unsubscribe function for transferAccepted event
function off(event: "transferAccepted", listener: TransferAcceptedEvent)
Parameters
- event
-
"transferAccepted"
event name
- listener
- TransferAcceptedEvent
callback fn that was used to subscribe to this event
on("transferAccepted", TransferAcceptedEvent)
Subscribe function for transferAccepted event
function on(event: "transferAccepted", listener: TransferAcceptedEvent)
Parameters
- event
-
"transferAccepted"
event name
- listener
- TransferAcceptedEvent
callback fn that was used to subscribe to this event
transfer(TransferToCallLocator, TransferToCallOptions)
Transfer a call to a another call
function transfer(target: TransferToCallLocator, options?: TransferToCallOptions): Transfer
Parameters
- target
- TransferToCallLocator
The target call which the source call is transferred to.
- options
- TransferToCallOptions
Returns
The Transfer object returned by the call transfer.
transfer(TransferToParticipantLocator, TransferToParticipantOptions)
Transfer a call to a participant
function transfer(target: TransferToParticipantLocator, options?: TransferToParticipantOptions): Transfer
Parameters
- target
- TransferToParticipantLocator
The target participant which the source call is transferred to.
- options
- TransferToParticipantOptions
Returns
The Transfer object returned by the call transfer.
transfer(TransferToVoicemailLocator, TransferToVoicemailOptions)
Transfer a call to voicemail
function transfer(target: TransferToVoicemailLocator, options?: TransferToVoicemailOptions): Transfer
Parameters
- target
- TransferToVoicemailLocator
The target Microsoft Teams User mri which the source call is transferred to.
- options
- TransferToVoicemailOptions
Returns
The Transfer object returned by the call transfer.
Inherited Method Details
dispose()
function dispose()
Inherited From CallFeature.dispose