/* Options: Date: 2026-02-14 09:55:40 SwiftVersion: 6.0 Version: 10.04 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stf-api-uat.data-xchange.co.za //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 /** * Debit Note */ // @Route("/debitNote/{DebitNoteId}/processed", "PUT") // @Api(Description="Debit Note") // @ApiResponse(Description="Command received", IsDefaultResponse=true, ResponseType=typeof(TokenDto), StatusCode=202) public class UpdateDebitNoteClientProcessed : IReturn, Codable { public typealias Return = TokenDto /** * Debit Note ID or Token */ // @ApiMember(Description="Debit Note ID or Token", 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 { }