Video SDK for Android API Reference
Loading...
Searching...
No Matches
ZoomVideoSDKLiveStreamParams.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
10 public String streamUrl;
11
15 public String key;
16
20 public String broadcastUrl;
21
26
32 this.streamUrl = null;
33 this.key = null;
34 this.broadcastUrl = null;
35 this.setting = new ZoomVideoSDKLiveStreamSetting();
36 }
37
46 this.streamUrl = streamUrl;
47 this.key = key;
48 this.broadcastUrl = broadcastUrl;
49 this.setting = setting != null ? setting : new ZoomVideoSDKLiveStreamSetting();
50 }
51}
Represents the parameters needed to start a Zoom Video SDK live stream.
ZoomVideoSDKLiveStreamParams(String streamUrl, String key, String broadcastUrl, ZoomVideoSDKLiveStreamSetting setting)
Constructor with parameters for ZoomVideoSDKLiveStreamParams.
ZoomVideoSDKLiveStreamParams()
Default constructor for ZoomVideoSDKLiveStreamParams. Initializes all parameters to null and creates ...
Represents the settings for a Zoom Video SDK live stream.