Package io.getstream.chat.android.models
Class VideoCallInfo
-
- All Implemented Interfaces:
@Deprecated(message = "This third-party library integration is deprecated. Contact the support team for more information.", level = DeprecationLevel.WARNING)@Immutable() public final class VideoCallInfo
Represents currently available call information for Agora and HMS video calls.
-
-
Field Summary
Fields Modifier and Type Field Description private final StringcallIdprivate final Stringproviderprivate final Stringtypeprivate final AgoraChannelagoraChannelprivate final HMSRoomhmsRoomprivate final VideoCallTokenvideoCallToken
-
Constructor Summary
Constructors Constructor Description VideoCallInfo(String callId, String provider, String type, AgoraChannel agoraChannel, HMSRoom hmsRoom, VideoCallToken videoCallToken)
-
Method Summary
Modifier and Type Method Description final StringgetCallId()The call id, which indicates a dedicated video call id on the channel. final StringgetProvider()The provider. final StringgetType()The call type. final AgoraChannelgetAgoraChannel()The available channel info of Agora. final HMSRoomgetHmsRoom()The available room info of HMS. final VideoCallTokengetVideoCallToken()The token info of the video call. -
-
Constructor Detail
-
VideoCallInfo
VideoCallInfo(String callId, String provider, String type, AgoraChannel agoraChannel, HMSRoom hmsRoom, VideoCallToken videoCallToken)
-
-
Method Detail
-
getCallId
final String getCallId()
The call id, which indicates a dedicated video call id on the channel.
-
getProvider
final String getProvider()
The provider.
-
getAgoraChannel
final AgoraChannel getAgoraChannel()
The available channel info of Agora.
-
getHmsRoom
final HMSRoom getHmsRoom()
The available room info of HMS.
-
getVideoCallToken
final VideoCallToken getVideoCallToken()
The token info of the video call.
-
-
-
-