/* Options: Date: 2025-04-05 21:08:32 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: PersonKeysRequest.* //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/all", Verbs="POST") open class PersonKeysRequest : IReturn { companion object { private val responseType = PersonKeysResponse::class.java } override fun getResponseType(): Any? = PersonKeysRequest.responseType } open class PersonKeysResponse { var responseStatus:ResponseStatus? = null var personKeyResponses:ArrayList = ArrayList() } 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 }