IncomingCallStackProps interface
Props for the IncomingCallManager component.
Properties
| active |
List of incoming calls. |
| on |
Handler to accept the incoming call. |
| on |
Handler to reject the incoming call. |
| removed |
List of incoming calls that have ended. |
| strings | Strings for the incoming call notifications. |
| styles | Styles for the incoming call notifications. |
| tab |
Tab index for the incoming Call stack, this will set the tab order of the incoming call notifications in your application. |
Property Details
activeIncomingCalls
List of incoming calls.
activeIncomingCalls: IncomingCallStackCall[]
Property Value
onAcceptCall
Handler to accept the incoming call.
onAcceptCall: (incomingCallId: string, useVideo?: boolean) => void
Property Value
(incomingCallId: string, useVideo?: boolean) => void
onRejectCall
Handler to reject the incoming call.
onRejectCall: (incomingCallId: string) => void
Property Value
(incomingCallId: string) => void
removedIncomingCalls
List of incoming calls that have ended.
removedIncomingCalls: IncomingCallStackCall[]
Property Value
strings
Strings for the incoming call notifications.
strings?: IncomingCallNotificationStrings
Property Value
styles
Styles for the incoming call notifications.
styles?: IncomingCallNotificationStyles
Property Value
tabIndex
Tab index for the incoming Call stack, this will set the tab order of the incoming call notifications in your application.
tabIndex?: number
Property Value
number