/* Options: Date: 2024-12-29 02:32:35 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: DirectoryPersonRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/Directory/{directory_uuid}", Verbs="POST") open class DirectoryPersonRequest : IReturn { var directory_uuid:String? = null companion object { private val responseType = DirectoryPersonResponse::class.java } override fun getResponseType(): Any? = DirectoryPersonRequest.responseType } open class DirectoryPersonResponse { var responseStatus:ResponseStatus? = null var directory_uuid:String? = null var waiver:String? = null var bday:Date? = null var spouse_bday:Date? = null var spouse_name:String? = null var wedding_date:Date? = null var kids:String? = null var home_country:String? = null var quote:String? = null var bio:String? = null var interests:String? = null var category:String? = null var imageBase64:String? = null var preferred_name:String? = null var last_name:String? = null var addr1:String? = null var addr2:String? = null var city:String? = null var state:String? = null var country:String? = null var code:String? = null var email:String? = null var phone_home:String? = null var phone_cell:String? = null var program:String? = null var field_of_work:String? = null var church:String? = null var is_student:Boolean? = null var is_staff:Boolean? = null var is_faculty:Boolean? = null }