/* Options: Date: 2026-02-14 10:12:50 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: UpdateReceivingAdviceClientProcessed.* //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 Receiving Advice */ // @Route("/receivingAdvice/{ReceivingAdviceId}/processed", "PUT") // @Api(Description="Receiving Advice") // @ApiResponse(Description="Command received", IsDefaultResponse=true, ResponseType="typeof(DX.Framework.Core.Commands.Dto.TokenDto)", StatusCode=202) export class UpdateReceivingAdviceClientProcessed implements IReturn { /** @description ReceivingAdvice ID or Token */ // @ApiMember(Description="ReceivingAdvice ID or Token", ExcludeInSchema=true, ParameterType="path") public receivingAdviceId: string; /** @description Customer ReceivingAdvice reference in destination system */ // @ApiMember(Description="Customer ReceivingAdvice reference in destination system") public customerReference: string; /** @description Date and Time ReceivingAdvice was processed in destination system */ // @ApiMember(Description="Date and Time ReceivingAdvice was processed in destination system") public customerProcessedDate: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UpdateReceivingAdviceClientProcessed'; } public getMethod() { return 'PUT'; } public createResponse() { return new TokenDto(); } }