/* Options: Date: 2026-02-14 09:53:13 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: UpdateDebitNoteClientProcessed.* //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 Debit Note */ // @Route("/debitNote/{DebitNoteId}/processed", "PUT") // @Api(Description="Debit Note") // @ApiResponse(Description="Command received", IsDefaultResponse=true, ResponseType="typeof(DX.Framework.Core.Commands.Dto.TokenDto)", StatusCode=202) export class UpdateDebitNoteClientProcessed implements IReturn { /** @description Debit Note ID or Token */ // @ApiMember(Description="Debit Note ID or Token", ParameterType="path") public debitNoteId: string; /** @description Customer debit note reference in destination system */ // @ApiMember(Description="Customer debit note reference in destination system") public customerReference: string; /** @description Date and Time debit note was processed in destination system */ // @ApiMember(Description="Date and Time debit note was processed in destination system") public customerProcessedDate: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UpdateDebitNoteClientProcessed'; } public getMethod() { return 'PUT'; } public createResponse() { return new TokenDto(); } }