/* Options: Date: 2026-02-14 09:58:38 Version: 10.04 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stf-api-uat.data-xchange.co.za //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdateDebitNoteClientProcessed.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* /** * Debit Note */ @Route(Path="/debitNote/{DebitNoteId}/processed", Verbs="PUT") @Api(Description="Debit Note") @ApiResponse(Description="Command received", IsDefaultResponse=true, ResponseType=TokenDto::class, StatusCode=202) open class UpdateDebitNoteClientProcessed : IReturn { /** * Debit Note ID or Token */ @ApiMember(Description="Debit Note ID or Token", ParameterType="path") open var debitNoteId:UUID? = null /** * Customer debit note reference in destination system */ @ApiMember(Description="Customer debit note reference in destination system") open var customerReference:String? = null /** * Date and Time debit note was processed in destination system */ @ApiMember(Description="Date and Time debit note was processed in destination system") open var customerProcessedDate:Date? = null companion object { private val responseType = TokenDto::class.java } override fun getResponseType(): Any? = UpdateDebitNoteClientProcessed.responseType } open class TokenDto : ICommandResponse { open var token:UUID? = null } interface ICommandResponse { }