TimerInfoDtoQueryResult

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

Query result container.

Constructors

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

Properties

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

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.