(* Options: Date: 2025-04-09 03:07:58 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://taxfiling.staging.pwc.de //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: VersionCheckAsync.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace PwC.xEric.Core.Domain.Concretes.Models open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Net /// ///A base service to retrieve the list of all product and file versions of used ERiC-libraries. /// [] [] type VersionCheckBase() = interface IGet /// ///Represent a version of the internally used test module. /// [] [] type PruefModul() = /// ///The tax data type version of the test module. /// [] member val DatenartVersion:String = null with get,set /// ///The label of the test module. /// [] member val Label:String = null with get,set /// ///The runtime of the test module. /// [] member val Runtime:String = null with get,set /// ///Represents Represents an ERiC dynamic library. /// [] [] type Bibliothek() = /// ///The name of the library. /// [] member val Name:String = null with get,set /// ///The product version of the library. /// [] member val Produktversion:String = null with get,set /// ///The file version of the library. /// [] member val Dateiversion:String = null with get,set /// ///The list of test modules of the library. /// [] member val PruefModulen:ResizeArray = null with get,set /// ///Represents a structure that encapsulates a list of ERiC dynamic libraries. /// [] [] type EricVersion() = /// ///The list of available ERiC dynamic libraries. /// [] member val Bibliotheken:ResizeArray = null with get,set /// ///Represent a base response that encapsulate any ERiC API function return value. /// [] [] type EricFehlerCodeResponse() = inherit ServiceReponseBase() /// ///The status code that the ERiC API function returns. /// [] member val StatusCode:EricFehlerCode = new EricFehlerCode() with get,set /// ///The status message that the ERiC API function returns. /// [] member val StatusText:String = null with get,set /// ///Represents a type that encapsulates the versions of ERiC library components. /// [] [] type EricVersionResponse() = inherit EricFehlerCodeResponse() /// ///The version of an ERiC library component. /// [] member val Rueckgabe:EricVersion = null with get,set /// ///An asynchronous service to retrieve the list of all product and file versions of used ERiC-libraries. /// [] [] [] type VersionCheckAsync() = inherit VersionCheckBase() interface IReturn