/* Options: Date: 2025-05-04 23:09:57 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SendTestEmail.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* /** * Send a test email from the specified account */ @Route(Path="/settings/test-email", Verbs="POST") @Api(Description="Send a test email from the specified account") open class SendTestEmail : IReturnVoid, IPost { /** * The email account to send from */ @ApiMember(Description="The email account to send from") open var account:EmailAccount? = null /** * The user to send to */ @ApiMember(Description="The user to send to") open var emailAddress:String? = null } open class EmailAccount { open var id:String? = null open var server:String? = null open var userName:String? = null open var port:Int? = null open var emailAddress:String? = null open var displayName:String? = null open var password:String? = null }