/* Options: Date: 2026-02-14 09:55:40 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: UpdateInvoiceClientProcessed.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ICommandResponse { } export class TokenDto implements ICommandResponse { public token: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Invoice */ // @Route("/invoice/{InvoiceId}/processed", "PUT") // @Api(Description="Invoice") // @ApiResponse(Description="Command received", IsDefaultResponse=true, ResponseType="typeof(DX.Framework.Core.Commands.Dto.TokenDto)", StatusCode=202) export class UpdateInvoiceClientProcessed implements IReturn { /** @description Invoice ID or Token */ // @ApiMember(Description="Invoice ID or Token", ExcludeInSchema=true, ParameterType="path") public invoiceId: string; /** @description Customer invoice reference in destination system */ // @ApiMember(Description="Customer invoice reference in destination system") public customerReference: string; /** @description Date and Time invoice was processed in destination system */ // @ApiMember(Description="Date and Time invoice was processed in destination system") public customerProcessedDate: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UpdateInvoiceClientProcessed'; } public getMethod() { return 'PUT'; } public createResponse() { return new TokenDto(); } }