/* Options: Date: 2024-10-06 10:28:30 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PhoneEmailHistoryRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/admissions/{uuid}/phoneemail/history", Verbs="POST") open class PhoneEmailHistoryRequest : IReturn { var uuid:String? = null companion object { private val responseType = PhoneEmailHistoryResponse::class.java } override fun getResponseType(): Any? = PhoneEmailHistoryRequest.responseType } open class PhoneEmailHistoryResponse { var responseStatus:ResponseStatus? = null var uuid:String? = null var regent_id:Int? = null var phoneEmails:ArrayList = ArrayList() } open class PhoneEmailResponse { var phone_home:String? = null var phone_cell:String? = null var phone_bus:String? = null var email:String? = null var start_date:Date? = null var end_date:Date? = null var added_by:String? = null var added_date:Date? = null var changed_by:String? = null var changed_date:Date? = null }