/* Options: Date: 2026-01-25 12:24:22 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: DeleteAlert.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Delete the specified alert */ // @Route("/alerts/{alertId}", "DELETE") // @Api(Description="Delete the specified alert") public class DeleteAlert : IReturnVoid, IDelete, Codable { /** * The ID of the alert to delete */ // @ApiMember(Description="The ID of the alert to delete") public var alertId:String? required public init(){} }