/* Options: Date: 2025-05-24 19:03:45 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteEndpoint.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* /** * Deletes the specified endpoint */ @Route(Path="/endpoints/{endpointId}", Verbs="DELETE") @Api(Description="Deletes the specified endpoint") open class DeleteEndpoint : IReturnVoid, IDelete { /** * The ID of the endpoint to delete */ @ApiMember(Description="The ID of the endpoint to delete") open var endpointId:String? = null }