SearchSecureMailRequestDto
data class SearchSecureMailRequestDto(var direction: SecureMailDirectionDto? = null, var dateSentFrom: OffsetDateTime? = null, var dateSentTo: OffsetDateTime? = null, var dateReadFrom: OffsetDateTime? = null, var dateReadTo: OffsetDateTime? = null, var subject: String? = null, var readStatus: ReadStatusDto? = eu.m8ty.dtos.common.ReadStatusDto.ALL)
Search parameter for the Secure Mail list. If all fields are empty, all the user's Secure Mail will be returned, sorted in descending order by dateSent.
Parameters
direction
Filter by Secure Mail direction.
dateSentFrom
From date of the date sent range.
dateSentTo
To date of the date sent range.
dateReadFrom
From date of the date read range.
dateReadTo
To date of the date read range.
subject
The subject of the Secure Mail.
readStatus
Constructors
Link copied to clipboard
constructor(direction: SecureMailDirectionDto? = null, dateSentFrom: OffsetDateTime? = null, dateSentTo: OffsetDateTime? = null, dateReadFrom: OffsetDateTime? = null, dateReadTo: OffsetDateTime? = null, subject: String? = null, readStatus: ReadStatusDto? = eu.m8ty.dtos.common.ReadStatusDto.ALL)