/* Options: Date: 2024-04-30 04:18:05 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: GetDefinitionKeysAsync.* //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 An asynchronous service to retrieve keys for the identification of VAT properties. */ // @Route("/GetDefinitionKeysAsync", "GET") // @Api(Description="An asynchronous service to retrieve keys for the identification of VAT properties.") export class GetDefinitionKeysAsync 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 'GetDefinitionKeysAsync'; } public getMethod() { return 'GET'; } public createResponse() { return new Array(); } }