Package-level declarations
Types
Link copied to clipboard
The Secure Mail priority Values: NORMAL,HIGH
Link copied to clipboard
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.
Link copied to clipboard
Defines whether Secure Mail is sent from customer to the bank or vice versa. Values: TO_BANK,FROM_BANK
Link copied to clipboard
data class SecureMailDto(var id: String, var direction: SecureMailDirectionDto, var subject: String, var replyToSecureMailId: String? = null, var content: String? = null, var priority: PriorityLevelDto? = null, var senderName: String? = null, var senderAddress: String? = null, var receiverName: String? = null, var receiverAddress: String? = null, var dateRead: OffsetDateTime? = null, var dateSent: OffsetDateTime? = null, var attachments: MutableList<AttachmentMetadataDto>? = null)
The Secure Mail data.
Link copied to clipboard
Paged result containing all requested Secure Mail messages of a user.
Link copied to clipboard
data class SecureMailRecipientDto(var email: String, var firstName: String? = null, var lastName: String? = null)
Secure Mail recipient object representing a contact to which Secure Mail is sent.
Link copied to clipboard
data class SecureMailRecipientsResponseDto(var helpdeskEmail: String? = null, var recipients: MutableList<SecureMailRecipientDto>? = null)
List of possible recipients to which the Secure Mail could be sent. Usually list of bank's helpdesk email and advisor contacts.