/* Options: Date: 2024-04-29 00:44:01 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: BatchCheckElsterAsync.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } /** @description Represents a structure that encapsulates a tax declaration. */ // @Api(Description="Represents a structure that encapsulates a tax declaration.") export class TaxData { /** @description The unique identifier of the tax data. */ // @ApiMember(Description="The unique identifier of the tax data.", IsRequired=true) public id: string; /** @description The XML-based tax declaration. */ // @ApiMember(Description="The XML-based tax declaration.", IsRequired=true) public content: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description A base service to perform basic checks on a batch of tax data. */ // @Api(Description="A base service to perform basic checks on a batch of tax data.") export class BatchCheckElsterBase implements IPost { /** @description The batch of ELSTER tax data to check. */ // @ApiMember(Description="The batch of ELSTER tax data to check.", Name="Data") public data: TaxData[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description An asynchronous service to perform basic checks on a batch of tax data. */ // @Route("/BatchCheckElsterAsync", "POST") // @Api(Description="An asynchronous service to perform basic checks on a batch of tax data.") export class BatchCheckElsterAsync extends BatchCheckElsterBase implements IReturn { /** @description The batch of ELSTER tax data to check. */ // @ApiMember(Description="The batch of ELSTER tax data to check.", Name="Data") public data: TaxData[]; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'BatchCheckElsterAsync'; } public getMethod() { return 'POST'; } public createResponse() { return new Array(); } }