/* Options: Date: 2025-04-04 03:49:53 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://taxfiling.pwc.de //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: VersionCheckAsync.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* /** * An asynchronous service to retrieve the list of all product and file versions of used ERiC-libraries. */ @Route(Path="/VersionCheckAsync", Verbs="GET") @Api(Description="An asynchronous service to retrieve the list of all product and file versions of used ERiC-libraries.") open class VersionCheckAsync : VersionCheckBase(), IReturn<EricVersionResponse> { companion object { private val responseType = EricVersionResponse::class.java } override fun getResponseType(): Any? = VersionCheckAsync.responseType } /** * Represents a type that encapsulates the versions of ERiC library components. */ @Api(Description="Represents a type that encapsulates the versions of ERiC library components.") open class EricVersionResponse : EricFehlerCodeResponse() { /** * The version of an ERiC library component. */ @ApiMember(Description="The version of an ERiC library component.") open var rueckgabe:EricVersion? = null } /** * A base service to retrieve the list of all product and file versions of used ERiC-libraries. */ @Api(Description="A base service to retrieve the list of all product and file versions of used ERiC-libraries.") open class VersionCheckBase : IGet { } /** * Represents a structure that encapsulates a list of ERiC dynamic libraries. */ @Api(Description="Represents a structure that encapsulates a list of ERiC dynamic libraries.") open class EricVersion { /** * The list of available ERiC dynamic libraries. */ @ApiMember(Description="The list of available ERiC dynamic libraries.") open var bibliotheken:ArrayList<Bibliothek> = ArrayList<Bibliothek>() } /** * Represents Represents an ERiC dynamic library. */ @Api(Description="Represents Represents an ERiC dynamic library.") open class Bibliothek { /** * The name of the library. */ @ApiMember(Description="The name of the library.") open var name:String? = null /** * The product version of the library. */ @ApiMember(Description="The product version of the library.") open var produktversion:String? = null /** * The file version of the library. */ @ApiMember(Description="The file version of the library.") open var dateiversion:String? = null /** * The list of test modules of the library. */ @ApiMember(Description="The list of test modules of the library.") open var pruefModulen:ArrayList<PruefModul> = ArrayList<PruefModul>() } /** * Represent a version of the internally used test module. */ @Api(Description="Represent a version of the internally used test module.") open class PruefModul { /** * The tax data type version of the test module. */ @ApiMember(Description="The tax data type version of the test module.") open var datenartVersion:String? = null /** * The label of the test module. */ @ApiMember(Description="The label of the test module.") open var label:String? = null /** * The runtime of the test module. */ @ApiMember(Description="The runtime of the test module.") open var runtime:String? = null } /** * Represent a base response that encapsulate any ERiC API function return value. */ @Api(Description="Represent a base response that encapsulate any ERiC API function return value.") open class EricFehlerCodeResponse : ServiceReponseBase() { /** * The status code that the ERiC API function returns. */ @ApiMember(Description="The status code that the ERiC API function returns.") open var statusCode:EricFehlerCode? = null /** * The status message that the ERiC API function returns. */ @ApiMember(Description="The status message that the ERiC API function returns.") open var statusText:String? = null }