/* Options: Date: 2025-05-05 00:28:27 SwiftVersion: 6.0 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: DeleteEndpoint.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Deletes the specified endpoint */ // @Route("/endpoints/{endpointId}", "DELETE") // @Api(Description="Deletes the specified endpoint") public class DeleteEndpoint : IReturnVoid, IDelete, Codable { /** * The ID of the endpoint to delete */ // @ApiMember(Description="The ID of the endpoint to delete") public var endpointId:String? required public init(){} }