/* Options: Date: 2026-04-04 20:48:31 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://notifications.breastcancertrials.org.au //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ProcessTrialIncompleteFormEmail.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* open class ProcessTrialIncompleteFormEmail : IReturn, IPost { @Validate(Validator="NotNull") var trialId:Int? = null @Validate(Validator="NotNull") var effectiveDate:Date? = null companion object { private val responseType = ProcessTrialIncompleteFormEmailResponse::class.java } override fun getResponseType(): Any? = ProcessTrialIncompleteFormEmail.responseType } open class ProcessTrialIncompleteFormEmailResponse { var responseStatus:ResponseStatus? = null var result:String? = null var subject:String? = null var toAddresses:ArrayList = ArrayList() var ccAddresses:ArrayList = ArrayList() var bccAddresses:ArrayList = ArrayList() var fromAddress:EmailAddress? = null var count:Int? = null } open class EmailAddress { var displayName:String? = null var address:String? = null }