Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
PhoneHelper.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
3import java.util.List;
4
5public interface PhoneHelper {
6
13 String getCountryID();
14
21
28 }
29
55
67
91
101 String getID();
102
108 String getCode();
109
115 String getName();
116
117
123 String getNumber();
124
131
138 }
139
146
153
160
166 public boolean isDialOutSupported();
167
173 List<PhoneSupportCountryInfo> getSupportCountryInfo();
174
183 MobileRTCSDKError inviteCallOutUser(String countryCode, String phoneNumber, String userName);
184
185
192
199
207 MobileRTCSDKError callMe(String countryCode, String phoneNumber);
208
215
223
229 List<CallInPhoneNumberInfo> getCurrentMeetingCallInNumber();
230
237}
Enumeration of common errors of SDK.
Enumeration of the number types for calling to join the audio into a meeting.
Enumeration of the reasons for the telephone call’s failure.
Enumeration of phone call status.
CallInNumberType getType()
Get the call-in number’s call type.
String getDisplayNumber()
Get the current call-in number’s display number.
String getID()
Get the current call-in number's country ID.
String getCode()
Get the current call-in number's country code.
String getName()
Get the current call-in number's country name.
String getNumber()
Get the current call-in number’s telephone number.
String getCountryCode()
Get the country code.
String getCountryName()
Get the country name.
String getCountryID()
Get the ID of the country where a user can dial in.
boolean isDialOutSupported()
Query if it is able to dial out in the current meeting.
List< PhoneSupportCountryInfo > getSupportCountryInfo()
Get the list of the countries which support calling out.
List< CallInPhoneNumberInfo > getCurrentMeetingCallInNumber()
Get the list of call-in numbers supported by the meeting.
boolean isSupportPhoneFeature()
Determine if the user account supports calling out.
void addListener(PhoneHelperListener listener)
add phone helper listener
long getCurrentMeetingCallInParticipantID()
Get the ID of the participant who joins the meeting by calling in.
MobileRTCSDKError inviteCallOutUser(String countryCode, String phoneNumber, String userName)
Invite the specified user to join the meeting by calling out.
MobileRTCSDKError hangUp()
Cancel the current CALL ME action.
void removeListener(PhoneHelperListener listener)
remove add phone helper listener
MobileRTCSDKError cancelCallOutUser()
Cancel the invitation that is being called out by phone.
MobileRTCSDKError callMe(String countryCode, String phoneNumber)
Invite myself to join audio to the meeting by phone.
PhoneStatus getCallMeStatus()
Get the status of the invitation by CALL ME.
PhoneStatus getInviteCallOutUserStatus()
Get the invited user's status by calling out.
Meeting phone helper callback event.