/* Options:
Date: 2025-01-15 13:50:33
Version: 8.12
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://taxfiling.pwc.de
//GlobalNamespace:
//MakePartial: True
//MakeVirtual: True
//MakeInternal: False
//MakeDataContractsExtensible: False
//AddNullableAnnotations: False
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion:
//InitializeCollections: True
//ExportValueTypes: False
IncludeTypes: GetDefinitionKeys.*
//ExcludeTypes:
//AddNamespaces:
//AddDefaultXmlNamespace: http://schemas.servicestack.net/types
*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using System.Net;
using PwC.xEric.Core.Services.Contracts.Umsatzsteuer.ReturnBuilder.Helpers;
using PwC.xEric.Core.Services.Contracts.Umsatzsteuer.ReturnBuilder.Requests;
namespace PwC.xEric.Core.Services.Contracts.Umsatzsteuer.ReturnBuilder.Helpers
{
public enum VatType
{
UStVA,
UStDV,
UStSV,
USt,
ZM,
}
}
namespace PwC.xEric.Core.Services.Contracts.Umsatzsteuer.ReturnBuilder.Requests
{
///
///A synchronous service to retrieve keys for the identification of VAT properties.
///
[Route("/GetDefinitionKeys", "GET")]
[Api(Description="A synchronous service to retrieve keys for the identification of VAT properties.")]
public partial class GetDefinitionKeys
: GetDefinitionKeysBase, IReturn>
{
///
///The year of the assessment (Veranlagungsjahr).
///
[ApiMember(Description="The year of the assessment (Veranlagungsjahr).")]
public virtual int Year { get; set; }
///
///The type of VAT return.
///
[ApiMember(Description="The type of VAT return.")]
public virtual VatType VatType { get; set; }
}
///
///Create a VAT return from a Return Builder definition. Use the retrieved values as keys for the dictionary of properties that Return Builder provides.
///
[Api(Description="Create a VAT return from a Return Builder definition.\n Use the retrieved values as keys for the dictionary of properties that Return Builder provides.")]
public partial class GetDefinitionKeysBase
: IGet
{
///
///The year of the assessment (Veranlagungsjahr).
///
[ApiMember(Description="The year of the assessment (Veranlagungsjahr).")]
public virtual int Year { get; set; }
///
///The type of VAT return.
///
[ApiMember(Description="The type of VAT return.")]
public virtual VatType VatType { get; set; }
}
}