/* Options: Date: 2024-10-06 10:29:46 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: FacultyRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/Faculty/{id}", Verbs="POST") open class FacultyRequest : IReturn { var id:Int? = null companion object { private val responseType = FacultyResponse::class.java } override fun getResponseType(): Any? = FacultyRequest.responseType } open class FacultyResponse { var responseStatus:ResponseStatus? = null var id:Int? = null var first_name:String? = null var last_name:String? = null }