Package video.api.client.api.models
Class LiveStreamUpdatePayload
- java.lang.Object
-
- video.api.client.api.models.LiveStreamUpdatePayload
-
- All Implemented Interfaces:
Serializable
public class LiveStreamUpdatePayload extends Object implements Serializable
LiveStreamUpdatePayload- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_NAMEstatic StringSERIALIZED_NAME_PLAYER_IDstatic StringSERIALIZED_NAME_PUBLICstatic StringSERIALIZED_NAME_RECORD
-
Constructor Summary
Constructors Constructor Description LiveStreamUpdatePayload()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LiveStreamUpdatePayload_public(Boolean _public)booleanequals(Object o)StringgetName()The name you want to use for your live stream.StringgetPlayerId()The unique ID for the player associated with a live stream that you want to update.BooleangetPublic()BETA FEATURE Please limit all public = false (\"private\") livestreams to 3,000 users.BooleangetRecord()Use this to indicate whether you want the recording on or off.inthashCode()LiveStreamUpdatePayloadname(String name)LiveStreamUpdatePayloadplayerId(String playerId)LiveStreamUpdatePayloadrecord(Boolean record)voidsetName(String name)voidsetPlayerId(String playerId)voidsetPublic(Boolean _public)voidsetRecord(Boolean record)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_NAME
public static final String SERIALIZED_NAME_NAME
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_PUBLIC
public static final String SERIALIZED_NAME_PUBLIC
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_RECORD
public static final String SERIALIZED_NAME_RECORD
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_PLAYER_ID
public static final String SERIALIZED_NAME_PLAYER_ID
- See Also:
- Constant Field Values
-
-
Method Detail
-
name
public LiveStreamUpdatePayload name(String name)
-
getName
@Nullable public String getName()
The name you want to use for your live stream.- Returns:
- name
-
setName
public void setName(String name)
-
_public
public LiveStreamUpdatePayload _public(Boolean _public)
-
getPublic
@Nullable public Boolean getPublic()
BETA FEATURE Please limit all public = false (\"private\") livestreams to 3,000 users. Whether your video can be viewed by everyone, or requires authentication to see it. A setting of false will require a unique token for each view.- Returns:
- _public
-
setPublic
public void setPublic(Boolean _public)
-
record
public LiveStreamUpdatePayload record(Boolean record)
-
getRecord
@Nullable public Boolean getRecord()
Use this to indicate whether you want the recording on or off. On is true, off is false.- Returns:
- record
-
setRecord
public void setRecord(Boolean record)
-
playerId
public LiveStreamUpdatePayload playerId(String playerId)
-
getPlayerId
@Nullable public String getPlayerId()
The unique ID for the player associated with a live stream that you want to update.- Returns:
- playerId
-
setPlayerId
public void setPlayerId(String playerId)
-
-