Package video.api.client.api.models
Class VideoStatusIngestReceivedParts
- java.lang.Object
-
- video.api.client.api.models.VideoStatusIngestReceivedParts
-
- All Implemented Interfaces:
Serializable
public class VideoStatusIngestReceivedParts extends Object implements Serializable
VideoStatusIngestReceivedParts- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_PARTSstatic StringSERIALIZED_NAME_TOTAL
-
Constructor Summary
Constructors Constructor Description VideoStatusIngestReceivedParts()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VideoStatusIngestReceivedPartsaddPartsItem(Integer partsItem)booleanequals(Object o)List<Integer>getParts()The parts that have been uploaded, ordered.IntegergetTotal()Contains the number of expected parts.inthashCode()VideoStatusIngestReceivedPartsparts(List<Integer> parts)voidsetParts(List<Integer> parts)voidsetTotal(Integer total)StringtoString()VideoStatusIngestReceivedPartstotal(Integer total)
-
-
-
Field Detail
-
SERIALIZED_NAME_PARTS
public static final String SERIALIZED_NAME_PARTS
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_TOTAL
public static final String SERIALIZED_NAME_TOTAL
- See Also:
- Constant Field Values
-
-
Method Detail
-
parts
public VideoStatusIngestReceivedParts parts(List<Integer> parts)
-
addPartsItem
public VideoStatusIngestReceivedParts addPartsItem(Integer partsItem)
-
getParts
@Nullable public List<Integer> getParts()
The parts that have been uploaded, ordered. For example, if part 2 was sent before part 1, and both have been uploaded, the output will be [1, 2].- Returns:
- parts
-
total
public VideoStatusIngestReceivedParts total(Integer total)
-
getTotal
@Nullable public Integer getTotal()
Contains the number of expected parts. The total will be listed as \"null\" until the total number of parts is known.- Returns:
- total
-
setTotal
public void setTotal(Integer total)
-
-