/* Options: Date: 2026-04-14 20:09:13 Version: 10.06 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stf-api-uat.data-xchange.com/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdateOrderResponseClientProcessed.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck 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 Update order response as processed */ // @Route("/orderResponse/{OrderResponseId}/processed", "PUT") // @Api(Description="Update order response as processed") // @ApiResponse(Description="Command received", IsDefaultResponse=true, ResponseType="typeof(DX.Framework.Core.Commands.Dto.TokenDto)", StatusCode=202) export class UpdateOrderResponseClientProcessed implements IReturn { // @ApiMember(ExcludeInSchema=true, ParameterType="path") public orderResponseId: string; /** @description Customer OrderResponse reference in destination system */ // @ApiMember(Description="Customer OrderResponse reference in destination system") public customerReference: string; /** @description Date and Time OrderResponse was processed in destination system */ // @ApiMember(Description="Date and Time OrderResponse was processed in destination system") public customerProcessedDate: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UpdateOrderResponseClientProcessed'; } public getMethod() { return 'PUT'; } public createResponse() { return new TokenDto(); } }