/* Options: Date: 2024-10-06 10:34:43 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: NameHistoryRequest.* //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}/name/history", Verbs="POST") open class NameHistoryRequest : IReturn { var uuid:String? = null companion object { private val responseType = NameHistoryResponse::class.java } override fun getResponseType(): Any? = NameHistoryRequest.responseType } open class NameHistoryResponse { var responseStatus:ResponseStatus? = null var uuid:String? = null var regent_id:Int? = null var names:ArrayList = ArrayList() } open class NameResponse { var responseStatus:ResponseStatus? = null var first_name:String? = null var last_name:String? = null var middle_name:String? = null var preferred_name:String? = null var prefix:String? = null var created_date:Date? = null }