-
public final class CollectionModelRepresents a video collection in the library. Contains metadata such as the unique identifier, name, video count, total storage size, and preview information.
-
-
Field Summary
Fields Modifier and Type Field Description private final LongvideoLibraryIdprivate final Stringguidprivate final Stringnameprivate final LongvideoCountprivate final LongtotalSizeprivate final StringpreviewVideoIdsprivate final List<String>previewImageUrls
-
Method Summary
Modifier and Type Method Description final LonggetVideoLibraryId()final StringgetGuid()final StringgetName()final LonggetVideoCount()final LonggetTotalSize()final StringgetPreviewVideoIds()final List<String>getPreviewImageUrls()-
-
Constructor Detail
-
CollectionModel
CollectionModel(Long videoLibraryId, String guid, String name, Long videoCount, Long totalSize, String previewVideoIds, List<String> previewImageUrls)
- Parameters:
videoLibraryId- The ID of the video library that contains the collection.guid- The unique identifier of the collection.name- The name of the collection.videoCount- The number of videos in the collection.totalSize- The total storage size of the collection in bytes.previewVideoIds- Comma-separated list of video IDs used as preview icons.previewImageUrls- An array of URLs for preview images of the videos in the collection.
-
-
Method Detail
-
getVideoLibraryId
final Long getVideoLibraryId()
-
getVideoCount
final Long getVideoCount()
-
getTotalSize
final Long getTotalSize()
-
getPreviewVideoIds
final String getPreviewVideoIds()
-
getPreviewImageUrls
final List<String> getPreviewImageUrls()
-
-
-
-