Package video.api.client.api.models
Class VideoStatusIngest
- java.lang.Object
-
- video.api.client.api.models.VideoStatusIngest
-
- All Implemented Interfaces:
Serializable
public class VideoStatusIngest extends Object implements Serializable
Details about the capturing, transferring, and storing of your video for use immediately or in the future.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classVideoStatusIngest.StatusEnumThere are three possible ingest statuses.
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_FILESIZEstatic StringSERIALIZED_NAME_RECEIVED_BYTESstatic StringSERIALIZED_NAME_STATUS
-
Constructor Summary
Constructors Constructor Description VideoStatusIngest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VideoStatusIngestaddReceivedBytesItem(BytesRange receivedBytesItem)booleanequals(Object o)VideoStatusIngestfilesize(Integer filesize)IntegergetFilesize()The size of your file in bytes.List<BytesRange>getReceivedBytes()The total number of bytes received, listed for each chunk of the upload.VideoStatusIngest.StatusEnumgetStatus()There are three possible ingest statuses.inthashCode()VideoStatusIngestreceivedBytes(List<BytesRange> receivedBytes)voidsetFilesize(Integer filesize)voidsetReceivedBytes(List<BytesRange> receivedBytes)voidsetStatus(VideoStatusIngest.StatusEnum status)VideoStatusIngeststatus(VideoStatusIngest.StatusEnum status)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_STATUS
public static final String SERIALIZED_NAME_STATUS
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_FILESIZE
public static final String SERIALIZED_NAME_FILESIZE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_RECEIVED_BYTES
public static final String SERIALIZED_NAME_RECEIVED_BYTES
- See Also:
- Constant Field Values
-
-
Method Detail
-
status
public VideoStatusIngest status(VideoStatusIngest.StatusEnum status)
-
getStatus
@Nullable public VideoStatusIngest.StatusEnum getStatus()
There are three possible ingest statuses. missing - you are missing information required to ingest the video. uploading - the video is in the process of being uploaded. uploaded - the video is ready for use.- Returns:
- status
-
setStatus
public void setStatus(VideoStatusIngest.StatusEnum status)
-
filesize
public VideoStatusIngest filesize(Integer filesize)
-
getFilesize
@Nullable public Integer getFilesize()
The size of your file in bytes.- Returns:
- filesize
-
setFilesize
public void setFilesize(Integer filesize)
-
receivedBytes
public VideoStatusIngest receivedBytes(List<BytesRange> receivedBytes)
-
addReceivedBytesItem
public VideoStatusIngest addReceivedBytesItem(BytesRange receivedBytesItem)
-
getReceivedBytes
@Nullable public List<BytesRange> getReceivedBytes()
The total number of bytes received, listed for each chunk of the upload.- Returns:
- receivedBytes
-
setReceivedBytes
public void setReceivedBytes(List<BytesRange> receivedBytes)
-
-