' Options:
'Date: 2025-04-04 18:43:03
'Version: 8.52
'Tip: To override a DTO option, remove "''" prefix before updating
'BaseUrl: https://taxfiling.pwc.de
'
'''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: CreateUuid.*
'''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 System.Net
Imports PwC.xEric.Core.Services.Contracts.Requests
Imports PwC.xEric.Core.Services.Contracts.Responses

Namespace Global

    Namespace PwC.xEric.Core.Services.Contracts.Requests

        '''<Summary>
        '''A synchronous service to generate a Universal Unique Identifier.
        '''</Summary>
        <Route("/CreateUuid", "GET")>
        <Api(Description:="A synchronous service to generate a Universal Unique Identifier.")>
        Public Partial Class CreateUuid
            Inherits CreateUuidBase
            Implements IReturn(Of UuidResponse)
        End Class

        '''<Summary>
        '''Specifies a base service to generate a Universal Unique Identifier.
        '''</Summary>
        <Api(Description:="Specifies a base service to generate a Universal Unique Identifier.")>
        Public Partial Class CreateUuidBase
            Implements IGet
        End Class
    End Namespace

    Namespace PwC.xEric.Core.Services.Contracts.Responses

        '''<Summary>
        '''Represent a base response that encapsulate any ERiC API function return value.
        '''</Summary>
        <Api(Description:="Represent a base response that encapsulate any ERiC API function return value.")>
        Public Partial Class EricFehlerCodeResponse
            Inherits ServiceReponseBase
            '''<Summary>
            '''The status code that the ERiC API function returns.
            '''</Summary>
            <ApiMember(Description:="The status code that the ERiC API function returns.")>
            Public Overridable Property StatusCode As EricFehlerCode

            '''<Summary>
            '''The status message that the ERiC API function returns.
            '''</Summary>
            <ApiMember(Description:="The status message that the ERiC API function returns.")>
            Public Overridable Property StatusText As String
        End Class

        '''<Summary>
        '''Represents a type that encaspulates a Universal Unique Identifier (UUID).
        '''</Summary>
        <Api(Description:="Represents a type that encaspulates a Universal Unique Identifier (UUID).")>
        Public Partial Class UuidResponse
            Inherits EricFehlerCodeResponse
            '''<Summary>
            '''The generated Universal Unique Identifier.
            '''</Summary>
            <ApiMember(Description:="The generated Universal Unique Identifier.")>
            Public Overridable Property UUID As String
        End Class
    End Namespace
End Namespace