Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
ZoomSDKSharingSourceInfo.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
7 private long userID;
8 private long shareSourceID;
11 private boolean canBeRemoteControl;
12
23 this.userID = userID;
24 this.shareSourceID = shareSourceID;
25 this.status = status;
26 this.canBeRemoteControl = canBeRemoteControl;
27 this.contentType = contentType;
28 }
29
35 public long getUserID() {
36 return userID;
37 }
38
44 public long getShareSourceID() {
45 return shareSourceID;
46 }
47
54 return status;
55 }
56
62 public boolean canBeRemoteControl() {
63 return canBeRemoteControl;
64 }
65
74}
MobileRTCShareContentType getContentType()
Gets the share content type.
boolean canBeRemoteControl()
Determines whether it can be remote controlled.
SharingStatus getStatus()
Gets the sharing status.
ZoomSDKSharingSourceInfo(long userID, long shareSourceID, SharingStatus status, MobileRTCShareContentType contentType, boolean canBeRemoteControl)
Constructs a ZoomSDKSharingSourceInfo instance.
long getShareSourceID()
Gets the share source's ID.
Enumeration of types of shared content.
Enumeration of sharing status.