(* Options: Date: 2025-05-05 00:44:36 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: SendTestEmail.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api.Settings open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type EmailAccount() = member val Id:String = null with get,set member val Server:String = null with get,set member val UserName:String = null with get,set member val Port:Int32 = new Int32() with get,set member val EmailAddress:String = null with get,set member val DisplayName:String = null with get,set member val Password:String = null with get,set /// ///Send a test email from the specified account /// [] [] [] type SendTestEmail() = interface IReturnVoid interface IPost /// ///The email account to send from /// [] member val Account:EmailAccount = null with get,set /// ///The user to send to /// [] member val EmailAddress:String = null with get,set