""" Options: Date: 2025-04-03 23:19:01 Version: 8.52 Tip: To override a DTO option, remove "#" prefix before updating BaseUrl: https://taxfiling.pwc.de #GlobalNamespace: #AddServiceStackTypes: True #AddResponseStatus: False #AddImplicitVersion: #AddDescriptionAsComments: True IncludeTypes: VersionCheck.* #ExcludeTypes: #DefaultImports: datetime,decimal,marshmallow.fields:*,servicestack:*,typing:*,dataclasses:dataclass/field,dataclasses_json:dataclass_json/LetterCase/Undefined/config,enum:Enum/IntEnum #DataClass: #DataClassJson: """ import datetime import decimal from marshmallow.fields import * from servicestack import * from typing import * from dataclasses import dataclass, field from dataclasses_json import dataclass_json, LetterCase, Undefined, config from enum import Enum, IntEnum # @Api(Description="A base service to retrieve the list of all product and file versions of used ERiC-libraries.") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class VersionCheckBase(IReturn[EricVersionResponse], IGet): """ A base service to retrieve the list of all product and file versions of used ERiC-libraries. """ @staticmethod def response_type(): return EricVersionResponse # @Api(Description="Represent a version of the internally used test module.") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class PruefModul: """ Represent a version of the internally used test module. """ # @ApiMember(Description="The tax data type version of the test module.") datenart_version: Optional[str] = None """ The tax data type version of the test module. """ # @ApiMember(Description="The label of the test module.") label: Optional[str] = None """ The label of the test module. """ # @ApiMember(Description="The runtime of the test module.") runtime: Optional[str] = None """ The runtime of the test module. """ # @Api(Description="Represents Represents an ERiC dynamic library.") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class Bibliothek: """ Represents Represents an ERiC dynamic library. """ # @ApiMember(Description="The name of the library.") name: Optional[str] = None """ The name of the library. """ # @ApiMember(Description="The product version of the library.") produktversion: Optional[str] = None """ The product version of the library. """ # @ApiMember(Description="The file version of the library.") dateiversion: Optional[str] = None """ The file version of the library. """ # @ApiMember(Description="The list of test modules of the library.") pruef_modulen: List[PruefModul] = field(default_factory=list) """ The list of test modules of the library. """ # @Api(Description="Represents a structure that encapsulates a list of ERiC dynamic libraries.") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class EricVersion: """ Represents a structure that encapsulates a list of ERiC dynamic libraries. """ # @ApiMember(Description="The list of available ERiC dynamic libraries.") bibliotheken: List[Bibliothek] = field(default_factory=list) """ The list of available ERiC dynamic libraries. """ # @Api(Description="Represent a base response that encapsulate any ERiC API function return value.") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class EricFehlerCodeResponse(ServiceReponseBase): """ Represent a base response that encapsulate any ERiC API function return value. """ # @ApiMember(Description="The status code that the ERiC API function returns.") status_code: Optional[EricFehlerCode] = None """ The status code that the ERiC API function returns. """ # @ApiMember(Description="The status message that the ERiC API function returns.") status_text: Optional[str] = None """ The status message that the ERiC API function returns. """ # @Api(Description="Represents a type that encapsulates the versions of ERiC library components.") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class EricVersionResponse(EricFehlerCodeResponse): """ Represents a type that encapsulates the versions of ERiC library components. """ # @ApiMember(Description="The version of an ERiC library component.") rueckgabe: Optional[EricVersion] = None """ The version of an ERiC library component. """ # @Route("/VersionCheck", "GET") # @Api(Description="A synchronous service to retrieve the list of all product and file versions of used ERiC-libraries.") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class VersionCheck(VersionCheckBase, IReturn[EricVersionResponse]): """ A synchronous service to retrieve the list of all product and file versions of used ERiC-libraries. """ pass