/* Options: Date: 2026-04-04 18:57:50 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: SendSiteOpenQueryEmail.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* open class SendSiteOpenQueryEmail : IReturn, IPost { @Validate(Validator="NotNull") var trialId:Int? = null @Validate(Validator="NotNull") var instCode:String? = null @Validate(Validator="NotNull") var effectiveDate:Date? = null companion object { private val responseType = SendSiteOpenQueryEmailResponse::class.java } override fun getResponseType(): Any? = SendSiteOpenQueryEmail.responseType } open class SendSiteOpenQueryEmailResponse { 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 }