/* Options: Date: 2025-11-04 22:58:30 SwiftVersion: 6.0 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://evovoice.io //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: DeleteAISession.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Delete the specified session */ // @Route("/ai/sessions/{sessionId}", "DELETE") // @Api(Description="Delete the specified session") public class DeleteAISession : IReturnVoid, IDelete, Codable { /** * The ID of the session to delete */ // @ApiMember(Description="The ID of the session to delete") public var sessionId:String? required public init(){} }