/* Options: Date: 2024-12-29 03:43: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: PersonRestrictionsRequest.* //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}/Restrictions", Verbs="POST") open class PersonRestrictionsRequest : IReturn { var uuid:String? = null companion object { private val responseType = PersonRestrictionsResponse::class.java } override fun getResponseType(): Any? = PersonRestrictionsRequest.responseType } open class PersonRestrictionsResponse { var responseStatus:ResponseStatus? = null var regent_id:Int? = null var uuid:String? = null var restrictions:ArrayList = ArrayList() var valid_restrictions:ArrayList = ArrayList() } open class PersonRestrictionResponse { var id:Int? = null var restriction_code:String? = null var restriction_description:String? = null var start_date:Date? = null var end_date:Date? = null } open class RestrictionResponse { var id:Int? = null var restriction_code:String? = null var restriction_description:String? = null var is_active:Boolean? = null }