/* Options: Date: 2026-04-14 20:09:50 SwiftVersion: 6.0 Version: 10.06 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stf-api-uat.data-xchange.com/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: UpdateDebitNoteClientProcessed.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Update debit note as processed */ // @Route("/debitNote/{DebitNoteId}/processed", "PUT") // @Api(Description="Update debit note as processed") // @ApiResponse(Description="Command received", IsDefaultResponse=true, ResponseType=typeof(TokenDto), StatusCode=202) public class UpdateDebitNoteClientProcessed : IReturn, Codable { public typealias Return = TokenDto // @ApiMember(ExcludeInSchema=true, ParameterType="path") public var debitNoteId:String? /** * Customer debit note reference in destination system */ // @ApiMember(Description="Customer debit note reference in destination system") public var customerReference:String? /** * Date and Time debit note was processed in destination system */ // @ApiMember(Description="Date and Time debit note was processed in destination system") public var customerProcessedDate:Date? required public init(){} } public class TokenDto : ICommandResponse, Codable { public var token:String? required public init(){} } public protocol ICommandResponse { }