(* Options: Date: 2024-05-02 05:32:12 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://taxfiling.pwc.de //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetDefinitionKeys.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace PwC.xEric.Core.Services.Contracts.Umsatzsteuer.ReturnBuilder.Helpers open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Net type VatType = | UStVA = 0 | UStDV = 1 | UStSV = 2 | USt = 3 | ZM = 4 /// ///Create a VAT return from a Return Builder definition. Use the retrieved values as keys for the dictionary of properties that Return Builder provides. /// [] [] type GetDefinitionKeysBase() = interface IGet /// ///The year of the assessment (Veranlagungsjahr). /// [] member val Year:Int32 = new Int32() with get,set /// ///The type of VAT return. /// [] member val VatType:VatType = new VatType() with get,set /// ///A synchronous service to retrieve keys for the identification of VAT properties. /// [] [] [] type GetDefinitionKeys() = inherit GetDefinitionKeysBase() interface IReturn> /// ///The year of the assessment (Veranlagungsjahr). /// [] member val Year:Int32 = new Int32() with get,set /// ///The type of VAT return. /// [] member val VatType:VatType = new VatType() with get,set