Video SDK for iOS API Reference
|
Zoom Video SDK user information. More...
#include <ZoomVideoSDKUser.h>
Inherits NSObject.
Instance Methods | |
(NSInteger) | - getUserID |
Get the user's id. | |
(NSString *_Nullable) | - getUserName |
Get the name of the user in the session. | |
(NSString *_Nullable) | - getCustomUserId |
Get the user's custom identity.. Which pass in jwt token or in SDKSessionContext.customUserId. | |
(NSString *_Nullable) | - getUserReference |
Get the user's reference. | |
(BOOL) | - isHost |
Determine whether the user is the host. | |
(BOOL) | - isManager |
Determine whether the user is the manager. | |
(BOOL) | - isIndividualRecordAgreed |
are user agreed with the individual record. | |
(BOOL) | - isVideoSpotLighted |
check if user be spotlighted. | |
(ZoomVideoSDKAudioStatus *_Nullable) | - audioStatus |
Get the user's audio status. | |
(ZoomVideoSDKVideoStatisticInfo *_Nullable) | - getVideoStatisticInfo |
Get the user's video statistic information. | |
(ZoomVideoSDKShareStatisticInfo *_Nullable) | - getShareStatisticInfo |
Get the user's share statistic information. | |
(ZoomVideoSDKRawDataPipe *_Nullable) | - getVideoPipe |
Get the user's video pipe. | |
(NSArray< ZoomVideoSDKRawDataPipe * > *_Nullable) | - getMultiCameraStreamList |
Get the user's multi-camera stream list. | |
(ZoomVideoSDKVideoCanvas *_Nullable) | - getVideoCanvas |
Get the user's video canvas. | |
(NSArray< ZoomVideoSDKVideoCanvas * > *_Nullable) | - getMultiCameraCanvasList |
Get the user's multi-camera canvas list. | |
(ZoomVideoSDKRemoteCameraControlHelper *_Nullable) | - getRemoteCameraControlHelper |
Get the helper class instance to access the remote camera control. | |
(NSArray< ZoomVideoSDKShareAction * > *_Nullable) | - getShareActionList |
Get the user's share-action list. | |
(BOOL) | - setUserVolume:isShareAudio: |
Set the user's local volume. This does not affect how other participants hear the user. | |
(BOOL) | - getUserVolume:isShareAudio: |
Get user volume. | |
(BOOL) | - canSetUserVolume: |
Determine which audio you can set, shared audio or microphone. | |
(ZoomVideoSDKError) | - transferFile: |
Send file to current user. | |
(BOOL) | - isIncomingLiveStreamUser |
Determine whether the user is an incoming live stream user. | |
Zoom Video SDK user information.
Definition at line 90 of file ZoomVideoSDKUser.h.
- (ZoomVideoSDKAudioStatus *_Nullable) audioStatus |
Get the user's audio status.
- (BOOL) canSetUserVolume: | (BOOL) | isSharingAudio |
Determine which audio you can set, shared audio or microphone.
isSharingAudio | if true, checks whether you can set the volume of shared audio, otherwise you can set the volume of the microphone. |
- (NSString *_Nullable) getCustomUserId |
Get the user's custom identity.. Which pass in jwt token or in SDKSessionContext.customUserId.
- (NSArray< ZoomVideoSDKVideoCanvas * > *_Nullable) getMultiCameraCanvasList |
Get the user's multi-camera canvas list.
- (NSArray< ZoomVideoSDKRawDataPipe * > *_Nullable) getMultiCameraStreamList |
Get the user's multi-camera stream list.
- (ZoomVideoSDKRemoteCameraControlHelper *_Nullable) getRemoteCameraControlHelper |
Get the helper class instance to access the remote camera control.
ZoomVideoSDKRemoteCameraControlHelper
. - (NSArray< ZoomVideoSDKShareAction * > *_Nullable) getShareActionList |
Get the user's share-action list.
ZoomVideoSDKShareAction
. - (ZoomVideoSDKShareStatisticInfo *_Nullable) getShareStatisticInfo |
Get the user's share statistic information.
- (NSInteger) getUserID |
Get the user's id.
- (NSString *_Nullable) getUserName |
Get the name of the user in the session.
- (NSString *_Nullable) getUserReference |
Get the user's reference.
- (BOOL) getUserVolume: | (float *_Nullable) | volume | |
isShareAudio: | (BOOL) | isSharingAudio |
Get user volume.
volume | Store the obtained value. |
isSharingAudio | if true, gets the volume of shared audio, otherwise gets the volume of the microphone. |
- (ZoomVideoSDKVideoCanvas *_Nullable) getVideoCanvas |
Get the user's video canvas.
- (ZoomVideoSDKRawDataPipe *_Nullable) getVideoPipe |
Get the user's video pipe.
- (ZoomVideoSDKVideoStatisticInfo *_Nullable) getVideoStatisticInfo |
Get the user's video statistic information.
- (BOOL) isHost |
Determine whether the user is the host.
- (BOOL) isIncomingLiveStreamUser |
Determine whether the user is an incoming live stream user.
- (BOOL) isIndividualRecordAgreed |
are user agreed with the individual record.
- (BOOL) isManager |
Determine whether the user is the manager.
- (BOOL) isVideoSpotLighted |
check if user be spotlighted.
- (BOOL) setUserVolume: | (float) | volume | |
isShareAudio: | (BOOL) | isSharingAudio |
Set the user's local volume. This does not affect how other participants hear the user.
volume | value can be >= 0 and <=10. If volume is 0, the user won't be able to hear related audio |
isSharingAudio | if true, sets the volume of shared audio, otherwise sets the volume of the microphone. |
- (ZoomVideoSDKError) transferFile: | (NSString *_Nullable) | filePath |
Send file to current user.
filePath | The local path of the file. |