MediaSegmentDtoQueryResult

@Serializable
data class MediaSegmentDtoQueryResult(val items: List<MediaSegmentDto>, val totalRecordCount: Int, val startIndex: Int)

Query result container.

Constructors

Link copied to clipboard
constructor(items: List<MediaSegmentDto>, totalRecordCount: Int, startIndex: Int)

Properties

Link copied to clipboard
@SerialName(value = "Items")
val items: List<MediaSegmentDto>

The items.

Link copied to clipboard
@SerialName(value = "StartIndex")
val startIndex: Int

The index of the first record in Items.

Link copied to clipboard
@SerialName(value = "TotalRecordCount")
val totalRecordCount: Int

The total number of records available.