/* Options: Date: 2024-12-23 12:20:39 SwiftVersion: 5.0 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: ProfileUpdateLanguageRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/profile/language", "PUT") public class ProfileUpdateLanguageRequest : IReturn, IPut, Codable { public typealias Return = ProfileUpdateLanguageResponse public var locale:Locale? required public init(){} } public class ProfileUpdateLanguageResponse : Codable { public var locale:Locale? required public init(){} } public enum Locale : String, Codable { case EnUs case NbNo }