/* Options: Date: 2025-04-05 06:36:58 SwiftVersion: 5.0 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: DeleteToken.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/token/{UniqueToken}", "DELETE") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) // @ValidateRequest(Validator="IsAuthenticated") public class DeleteToken : IReturn, Codable { public typealias Return = TokenResponse /** * The unique token.If empty a unique token will be generated automatically */ // @ApiMember(Description="The unique token.If empty a unique token will be generated automatically", IsRequired=true) public var uniqueToken:String required public init(){} } public class TokenResponse : Codable { /** * The token indentifier */ // @ApiMember(Description="The token indentifier") public var tokenIdentifier:String public var type:Int /** * The unique token */ // @ApiMember(Description="The unique token", IsRequired=true) public var uniqueToken:String public var expirationDate:Date public var responseStatus:ResponseStatus required public init(){} }