/* Options: Date: 2024-10-06 10:29: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: UserSettingsRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/UserSettings", Verbs="POST") open class UserSettingsRequest : IReturn { var uuid:String? = null companion object { private val responseType = UserSettingsResponse::class.java } override fun getResponseType(): Any? = UserSettingsRequest.responseType } open class UserSettingsResponse { var responseStatus:ResponseStatus? = null var settings:HashMap = HashMap() }