Package-level declarations

Types

Link copied to clipboard
@Serializable
data class ExportedSequenceDto<TDto : Any>(val limit: Int, val offset: Int, val totalCount: Int, val elements: List<TDto>)

A copy of ExportedSequence where elements are DTO. You can utilize convertExportedSequenceToDto to convert ExportedSequence to ExportedSequenceDto.

Link copied to clipboard

A pair of ExportedSequence represented as an entity and optional ExportedSequenceDto represented as a DTO.

Functions

Link copied to clipboard

Converts given exportedSequence to ExportedSequenceDto if the given predicate matches. Returns null otherwise.