/* Options: Date: 2024-07-03 12:51:51 SwiftVersion: 5.0 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: UpdateUserEmail.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/users/confirmemail", "POST") // @ApiResponse(Description="Returned if there is a validation error on the input parameters", StatusCode=400) // @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401) public class UpdateUserEmail : IReturn, Codable { public typealias Return = UpdateUserEmailResponse // @ApiMember(IsRequired=true) public var token:String /** * The user realm for identity server. BookMore = 1, BookMoreAdmin = 2 */ // @ApiMember(Description="The user realm for identity server. BookMore = 1, BookMoreAdmin = 2 ", IsRequired=true) public var realm:KeyCloakRealm required public init(){} } public class UpdateUserEmailResponse : Codable { //responseStatus:Object ignored. Type could not be extended in Swift public var userId:String? public var email:String required public init(){} } public enum KeyCloakRealm : Int, Codable { case BookMore = 1 case BookMoreAdmin = 2 case SuperAdmin = 3 }