/* Options: Date: 2025-05-06 19:35:29 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://unstable-consumer-api.brovs.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ProfileUpdateLanguageRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/profile/language", Verbs="PUT") open class ProfileUpdateLanguageRequest : IReturn, IPut { open var locale:Locale? = null companion object { private val responseType = ProfileUpdateLanguageResponse::class.java } override fun getResponseType(): Any? = ProfileUpdateLanguageRequest.responseType } open class ProfileUpdateLanguageResponse { open var locale:Locale? = null } enum class Locale { EnUs, NbNo, }