/* Options: Date: 2025-12-06 06:28:10 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AgentEmailCredentialsSendTestRequest.* //ExcludeTypes: //InitializeCollections: True //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.* @Route(Path="/v1/AgentEmailCredentialsSendTest", Verbs="POST,OPTIONS") open class AgentEmailCredentialsSendTestRequest : IReturn { companion object { private val responseType = AgentEmailCredentialsResponse::class.java } override fun getResponseType(): Any? = AgentEmailCredentialsSendTestRequest.responseType } open class AgentEmailCredentialsResponse { open var ResponseStatus:ResponseStatus? = null open var AgentEmailCredentials:ArrayList = ArrayList() } open class AgentEmailCredentials { open var Id:Int? = null open var AgentId:Int? = null open var EmailAddress:String? = null open var Username:String? = null open var Password:String? = null open var SMTPServer:String? = null open var SMTPPort:Int? = null open var SMTPAuthType:String? = null open var POP3Server:String? = null open var POP3Port:Int? = null open var POP3AuthType:String? = null open var IMAPServer:String? = null open var IMAPPort:Int? = null open var DateCreated:Date? = null open var DateModified:Date? = null }