/* Options: Date: 2026-02-14 10:18:01 Version: 10.04 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stf-api-uat.data-xchange.co.za //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AcknowledgeInvoice.* //ExcludeTypes: //DefaultImports: */ export interface IReturnVoid { createResponse(): void; } /** @description Invoice */ // @Route("/invoice/{InvoiceId}/acknowledge", "PUT") // @Api(Description="Invoice") // @ApiResponse(Description="Updated", IsDefaultResponse=true, StatusCode=204) // @ApiResponse(Description="GLN does not have required access", StatusCode=403) // @ApiResponse(Description="Document not found", StatusCode=404) export class AcknowledgeInvoice implements IReturnVoid { // @ApiMember(ExcludeInSchema=true, ParameterType="path") public invoiceId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'AcknowledgeInvoice'; } public getMethod() { return 'PUT'; } public createResponse() {} }