Package ai.nexconn.call.api
Interface INCCallSession
public interface INCCallSession
Call session data container.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the caller user ID.Returns the call ID.Returns the call state.Returns the call type (`single` or `multi-party`).Returns the inviter user ID.Returns the media type (`audio` or `audio/video`).Returns the list of remote participants.Returns the synchronized data associated with the session.toString()Returns a debug string for the session.
-
Method Details
-
getCallId
String getCallId()Returns the call ID. -
getCallState
NCCallState getCallState()Returns the call state. -
getCallType
NCCallType getCallType()Returns the call type (`single` or `multi-party`). -
getMediaType
NCCallMediaType getMediaType()Returns the media type (`audio` or `audio/video`). -
getCallerUserId
String getCallerUserId()Returns the caller user ID. -
getInvitorUserId
String getInvitorUserId()Returns the inviter user ID. -
getRemoteParticipants
List<INCCallUser> getRemoteParticipants()Returns the list of remote participants. -
getSyncData
String getSyncData()Returns the synchronized data associated with the session. -
toString
String toString()Returns a debug string for the session.
-