/* Options: Date: 2024-12-29 03:08:29 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: PersonKeyRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/person/keys", Verbs="POST") open class PersonKeyRequest : IReturn { var regent_id:Int? = null var uuid:String? = null var regent_login:String? = null var regent_network_login:String? = null companion object { private val responseType = PersonKeyResponse::class.java } override fun getResponseType(): Any? = PersonKeyRequest.responseType } open class PersonKeyResponse { var responseStatus:ResponseStatus? = null var regent_id:Int? = null var re_id:Int? = null var sugar_id:String? = null var uuid:String? = null var student_id:Int? = null var regent_login:String? = null }