Package video.api.client.api.models
Class LiveStreamAssets
- java.lang.Object
-
- video.api.client.api.models.LiveStreamAssets
-
- All Implemented Interfaces:
Serializable,DeepObject
public class LiveStreamAssets extends Object implements Serializable, DeepObject
LiveStreamAssets- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_HLSstatic StringSERIALIZED_NAME_IFRAMEstatic StringSERIALIZED_NAME_PLAYERstatic StringSERIALIZED_NAME_THUMBNAIL
-
Constructor Summary
Constructors Constructor Description LiveStreamAssets()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)URIgetHls()The http live streaming (HLS) link for your live video stream.StringgetIframe()The embed code for the iframe containing your live video stream.URIgetPlayer()A link to the video player that is playing your live stream.URIgetThumbnail()A link to the thumbnail for your video.inthashCode()LiveStreamAssetshls(URI hls)LiveStreamAssetsiframe(String iframe)LiveStreamAssetsplayer(URI player)voidsetHls(URI hls)voidsetIframe(String iframe)voidsetPlayer(URI player)voidsetThumbnail(URI thumbnail)LiveStreamAssetsthumbnail(URI thumbnail)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_HLS
public static final String SERIALIZED_NAME_HLS
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_IFRAME
public static final String SERIALIZED_NAME_IFRAME
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_PLAYER
public static final String SERIALIZED_NAME_PLAYER
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_THUMBNAIL
public static final String SERIALIZED_NAME_THUMBNAIL
- See Also:
- Constant Field Values
-
-
Method Detail
-
hls
public LiveStreamAssets hls(URI hls)
-
getHls
@Nullable public URI getHls()
The http live streaming (HLS) link for your live video stream.- Returns:
- hls
-
setHls
public void setHls(URI hls)
-
iframe
public LiveStreamAssets iframe(String iframe)
-
getIframe
@Nullable public String getIframe()
The embed code for the iframe containing your live video stream.- Returns:
- iframe
-
setIframe
public void setIframe(String iframe)
-
player
public LiveStreamAssets player(URI player)
-
getPlayer
@Nullable public URI getPlayer()
A link to the video player that is playing your live stream.- Returns:
- player
-
setPlayer
public void setPlayer(URI player)
-
thumbnail
public LiveStreamAssets thumbnail(URI thumbnail)
-
getThumbnail
@Nullable public URI getThumbnail()
A link to the thumbnail for your video.- Returns:
- thumbnail
-
setThumbnail
public void setThumbnail(URI thumbnail)
-
-