/* Options: Date: 2026-04-14 20:19:15 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: UpdateSettlementClientProcessed.* //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 settlement as processed */ // @Route("/settlement/{SettlementId}/processed", "PUT") // @Api(Description="Update settlement as processed") // @ApiResponse(Description="Command received", IsDefaultResponse=true, ResponseType="typeof(DX.Framework.Core.Commands.Dto.TokenDto)", StatusCode=202) export class UpdateSettlementClientProcessed implements IReturn { // @ApiMember(ExcludeInSchema=true, ParameterType="path") public settlementId: string; /** @description Customer Settlement reference in destination system */ // @ApiMember(Description="Customer Settlement reference in destination system") public customerReference: string; /** @description Date and Time Settlement was processed in destination system */ // @ApiMember(Description="Date and Time Settlement was processed in destination system") public customerProcessedDate: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UpdateSettlementClientProcessed'; } public getMethod() { return 'PUT'; } public createResponse() { return new TokenDto(); } }