' Options:
'Date: 2025-04-04 20:35:07
'Version: 8.52
'Tip: To override a DTO option, remove "''" prefix before updating
'BaseUrl: https://taxfiling.staging.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: VersionCheck.*
'''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
'''
'''Represents Represents an ERiC dynamic library.
'''
Public Partial Class Bibliothek
'''
'''The name of the library.
'''
Public Overridable Property Name As String
'''
'''The product version of the library.
'''
Public Overridable Property Produktversion As String
'''
'''The file version of the library.
'''
Public Overridable Property Dateiversion As String
'''
'''The list of test modules of the library.
'''
Public Overridable Property PruefModulen As List(Of PruefModul) = New List(Of PruefModul)
End Class
'''
'''Represents a structure that encapsulates a list of ERiC dynamic libraries.
'''
Public Partial Class EricVersion
'''
'''The list of available ERiC dynamic libraries.
'''
Public Overridable Property Bibliotheken As List(Of Bibliothek) = New List(Of Bibliothek)
End Class
'''
'''Represent a version of the internally used test module.
'''
Public Partial Class PruefModul
'''
'''The tax data type version of the test module.
'''
Public Overridable Property DatenartVersion As String
'''
'''The label of the test module.
'''
Public Overridable Property Label As String
'''
'''The runtime of the test module.
'''
Public Overridable Property Runtime As String
End Class
End Namespace
Namespace PwC.xEric.Core.Services.Contracts.Requests
'''
'''A synchronous service to retrieve the list of all product and file versions of used ERiC-libraries.
'''
Public Partial Class VersionCheck
Inherits VersionCheckBase
Implements IReturn(Of EricVersionResponse)
End Class
'''
'''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
'''
'''Represent a base response that encapsulate any ERiC API function return value.
'''
Public Partial Class EricFehlerCodeResponse
Inherits ServiceReponseBase
'''
'''The status code that the ERiC API function returns.
'''
Public Overridable Property StatusCode As EricFehlerCode
'''
'''The status message that the ERiC API function returns.
'''
Public Overridable Property StatusText As String
End Class
'''
'''Represents a type that encapsulates the versions of ERiC library components.
'''
Public Partial Class EricVersionResponse
Inherits EricFehlerCodeResponse
'''
'''The version of an ERiC library component.
'''
Public Overridable Property Rueckgabe As EricVersion
End Class
End Namespace
End Namespace