/* Options: Date: 2026-02-28 16:39:04 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: PersonLibraryLoginCheckRequest.* //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/{uuid}/library-login/check", Verbs="POST") open class PersonLibraryLoginCheckRequest : IReturn { var uuid:String? = null companion object { private val responseType = PersonLibraryLoginStatusResponse::class.java } override fun getResponseType(): Any? = PersonLibraryLoginCheckRequest.responseType } open class PersonLibraryLoginStatusResponse { var responseStatus:ResponseStatus? = null var has_library_login:Boolean? = null var is_expired:Boolean? = null var can_create_login:Boolean? = null var created_library_login:Boolean? = null var updated_library_login:Boolean? = null var regent_login:String? = null var expiry_date:Date? = null var message:String? = null }