macOS SDK API Reference
Loading...
Searching...
No Matches
ZoomSDKPhoneHelper.h
Go to the documentation of this file.
2
3#import "ZoomSDKErrors.h"
4
5@protocol ZoomSDKPhoneHelperDelegate <NSObject>
11-(void)onInviteCalloutUserStatus:(PhoneStatus)status FailedReason:(PhoneFailedReason)reason;
12
18-(void)onCallMeStatus:(PhoneStatus)status FailedReason:(PhoneFailedReason)reason;
19@end
20
21@interface ZoomSDKPhoneSupportCountryInfo : NSObject
26-(NSString*)getCountryID;
31-(NSString*)getCountryName;
36-(NSString*)getCountryCode;
37@end
38
39@interface ZoomSDKCallInPhoneNumInfo : NSObject
44-(NSString*) getID;
49-(NSString*) getCode;
54-(NSString*) getName;
59-(NSString*) getNumber;
64-(NSString*) getDisplayNumber;
70@end
71
72@interface ZoomSDKPhoneHelper : NSObject
73{
74 id<ZoomSDKPhoneHelperDelegate> _delegate;
76}
77@property(nonatomic, assign)id<ZoomSDKPhoneHelperDelegate> delegate;
82-(BOOL)isSupportPhone;
83
88-(NSArray*)getSupportCountryInfo;
89
97-(ZoomSDKError)inviteCalloutUser:(NSString*)userName PhoneNumber:(NSString*)number CountryCode:(NSString*)countryCode;
98
103-(ZoomSDKError)cancelCalloutUser;
104
109-(PhoneStatus)getInviteCalloutUserStatus;
110
117-(ZoomSDKError)callMe:(NSString*)number CountryCode:(NSString*)countryCode;
118
123-(ZoomSDKError)hangUp;
124
129-(PhoneStatus)getCallMeStatus;
130
135-(unsigned int)getCallInParticipantID;
136
141-(NSArray*)getCallInNumberInfo;
142
143@end
PhoneStatus
Enumeration of phone call status.
ZoomSDKError
Enumeration of common errors of SDK.
CallInNumberType
Enumeration of the number types for calling to join the audio into a meeting.
PhoneFailedReason
Enumeration of reasons of phone calls failed.
NSString * getCode()
The code of country from where user calls in.
NSString * getName()
Get the name of country from where user calls in.
NSString * getDisplayNumber()
Get the display number of the country.
CallInNumberType getType()
Get the number type for dialing in.
NSString * getNumber()
Get the number for dialing in.
NSString * getID()
Get the ID of country from which user calls in.
id< ZoomSDKPhoneHelperDelegate > _delegate
NSString * getCountryID()
Get the ID of country where user can dial in.
NSString * getCountryCode()
Get the code of country.
NSString * getCountryName()
Get the name of country.