/* Options: Date: 2024-10-06 10:33:54 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: SyncAddressRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/Sync/Address", Verbs="POST") open class SyncAddressRequest : IReturn { var regent_id:Int? = 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_bus:String? = null var phone_cell:String? = null var queued_by_username:String? = null var queued_by_CRM:Boolean? = null var queued_by_RE:Boolean? = null var queued_by_Sugar:Boolean? = null var queued_by_REGIS:Boolean? = null companion object { private val responseType = SyncBioAndAddressResponse::class.java } override fun getResponseType(): Any? = SyncAddressRequest.responseType } open class SyncBioAndAddressResponse { var responseStatus:ResponseStatus? = null var successfull:Boolean? = null }