' Options:
'Date: 2025-04-04 08:39: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: VersionCheckAsync.*
'''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.Domain.Concretes.Models
Imports PwC.xEric.Core.Services.Contracts.Responses

Namespace Global

    Namespace PwC.xEric.Core.Domain.Concretes.Models

        '''<Summary>
        '''Represents Represents an ERiC dynamic library.
        '''</Summary>
        <Api(Description:="Represents Represents an ERiC dynamic library.")>
        Public Partial Class Bibliothek
            '''<Summary>
            '''The name of the library.
            '''</Summary>
            <ApiMember(Description:="The name of the library.")>
            Public Overridable Property Name As String

            '''<Summary>
            '''The product version of the library.
            '''</Summary>
            <ApiMember(Description:="The product version of the library.")>
            Public Overridable Property Produktversion As String

            '''<Summary>
            '''The file version of the library.
            '''</Summary>
            <ApiMember(Description:="The file version of the library.")>
            Public Overridable Property Dateiversion As String

            '''<Summary>
            '''The list of test modules of the library.
            '''</Summary>
            <ApiMember(Description:="The list of test modules of the library.")>
            Public Overridable Property PruefModulen As List(Of PruefModul) = New List(Of PruefModul)
        End Class

        '''<Summary>
        '''Represents a structure that encapsulates a list of ERiC dynamic libraries.
        '''</Summary>
        <Api(Description:="Represents a structure that encapsulates a list of ERiC dynamic libraries.")>
        Public Partial Class EricVersion
            '''<Summary>
            '''The list of available ERiC dynamic libraries.
            '''</Summary>
            <ApiMember(Description:="The list of available ERiC dynamic libraries.")>
            Public Overridable Property Bibliotheken As List(Of Bibliothek) = New List(Of Bibliothek)
        End Class

        '''<Summary>
        '''Represent a version of the internally used test module.
        '''</Summary>
        <Api(Description:="Represent a version of the internally used test module.")>
        Public Partial Class PruefModul
            '''<Summary>
            '''The tax data type version of the test module.
            '''</Summary>
            <ApiMember(Description:="The tax data type version of the test module.")>
            Public Overridable Property DatenartVersion As String

            '''<Summary>
            '''The label of the test module.
            '''</Summary>
            <ApiMember(Description:="The label of the test module.")>
            Public Overridable Property Label As String

            '''<Summary>
            '''The runtime of the test module.
            '''</Summary>
            <ApiMember(Description:="The runtime of the test module.")>
            Public Overridable Property Runtime As String
        End Class
    End Namespace

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

        '''<Summary>
        '''An asynchronous service to retrieve the list of all product and file versions of used ERiC-libraries.
        '''</Summary>
        <Route("/VersionCheckAsync", "GET")>
        <Api(Description:="An asynchronous service to retrieve the list of all product and file versions of used ERiC-libraries.")>
        Public Partial Class VersionCheckAsync
            Inherits VersionCheckBase
            Implements IReturn(Of EricVersionResponse)
        End Class

        '''<Summary>
        '''A base service to retrieve the list of all product and file versions of used ERiC-libraries.
        '''</Summary>
        <Api(Description:="A base service to retrieve the list of all product and file versions of used ERiC-libraries.")>
        Public Partial Class VersionCheckBase
            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 encapsulates the versions of ERiC library components.
        '''</Summary>
        <Api(Description:="Represents a type that encapsulates the versions of ERiC library components.")>
        Public Partial Class EricVersionResponse
            Inherits EricFehlerCodeResponse
            '''<Summary>
            '''The version of an ERiC library component.
            '''</Summary>
            <ApiMember(Description:="The version of an ERiC library component.")>
            Public Overridable Property Rueckgabe As EricVersion
        End Class
    End Namespace
End Namespace