SecureMailRecipientDto

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.

Parameters

email

Email address of the recipient.

firstName

First name of the person/advisor.

lastName

Last name of the person/advisor.

Constructors

Link copied to clipboard
constructor(email: String, firstName: String? = null, lastName: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard
@get:Size(max = 50)
var firstName: String?
Link copied to clipboard
@get:Size(max = 50)
var lastName: String?