Range

Time-range selector for the transactions service ticket. Pass an instance as the range argument to RoutexTicketIssuer.transactions. Either a delta reference returned by an earlier call (Reference) or an absolute date range (Period).

Inheritors

Types

Link copied to clipboard
data class Period(val from: LocalDate, val to: LocalDate? = null) : Range

Absolute date range. from is inclusive; to is inclusive when present and may be null to leave the upper bound open.

Link copied to clipboard
data class Reference(val reference: String) : Range

Delta cursor that resumes the transaction stream after a prior call.