' Options:
'Date: 2025-06-03 21:58:48
'Version: 8.71
'Tip: To override a DTO option, remove "''" prefix before updating
'BaseUrl: https://team.evovoice.io
'
'''GlobalNamespace: 
'''MakePartial: True
'''MakeVirtual: True
'''MakeDataContractsExtensible: False
'''AddReturnMarker: True
'''AddDescriptionAsComments: True
'''AddDataContractAttributes: False
'''AddIndexesToDataMembers: False
'''AddGeneratedCodeAttributes: False
'''AddResponseStatus: False
'''AddImplicitVersion: 
'''InitializeCollections: False
'''ExportValueTypes: False
'IncludeTypes: DeleteEndpoint.*
'''ExcludeTypes: 
'''AddNamespaces: 
'''AddDefaultXmlNamespace: http://schemas.servicestack.net/types

Imports System
Imports System.IO
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports Voice.Api.Endpoints

Namespace Global

    Namespace Voice.Api.Endpoints

        '''<Summary>
        '''Deletes the specified endpoint
        '''</Summary>
        <Route("/endpoints/{endpointId}", "DELETE")>
        <Api(Description:="Deletes the specified endpoint")>
        Public Partial Class DeleteEndpoint
            Implements IReturnVoid
            Implements IDelete
            '''<Summary>
            '''The ID of the endpoint to delete
            '''</Summary>
            <ApiMember(Description:="The ID of the endpoint to delete")>
            Public Overridable Property EndpointId As String
        End Class
    End Namespace
End Namespace