ExportedSequence

data class ExportedSequence<E : Entity<E>>(val limit: Int, val offset: Int, val totalCount: Int, val elements: List<E>)

Exported EntitySequence.

Parameters

limit

Max amount of elements in this exported sequence.

offset

The amount of elements omitted from the initial sequence at the start.

totalCount

Total amount of elements in the initial sequence.

See also

Constructors

Link copied to clipboard
constructor(limit: Int, offset: Int, totalCount: Int, elements: List<E>)

Properties

Link copied to clipboard
Link copied to clipboard
val limit: Int
Link copied to clipboard
val offset: Int
Link copied to clipboard