/* Options: Date: 2024-04-29 09:21:13 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://taxfiling.pwc.de //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDefinitionKeys.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export enum VatType { UStVA = 'UStVA', UStDV = 'UStDV', UStSV = 'UStSV', USt = 'USt', ZM = 'ZM', } /** @description 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.") export class GetDefinitionKeysBase implements IGet { /** @description The year of the assessment (Veranlagungsjahr). */ // @ApiMember(Description="The year of the assessment (Veranlagungsjahr).") public year: number; /** @description The type of VAT return. */ // @ApiMember(Description="The type of VAT return.") public vatType: VatType; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description 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.") export class GetDefinitionKeys extends GetDefinitionKeysBase implements IReturn { /** @description The year of the assessment (Veranlagungsjahr). */ // @ApiMember(Description="The year of the assessment (Veranlagungsjahr).") public year: number; /** @description The type of VAT return. */ // @ApiMember(Description="The type of VAT return.") public vatType: VatType; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'GetDefinitionKeys'; } public getMethod() { return 'GET'; } public createResponse() { return new Array(); } }