/* Options: Date: 2026-04-14 20:19:14 Version: 10.06 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stf-api-uat.data-xchange.com/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdateInvoiceClientProcessed.* //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.* /** * Update invoice as processed */ @Route(Path="/invoice/{InvoiceId}/processed", Verbs="PUT") @Api(Description="Update invoice as processed") @ApiResponse(Description="Command received", IsDefaultResponse=true, ResponseType=TokenDto::class, StatusCode=202) open class UpdateInvoiceClientProcessed : IReturn { @ApiMember(ExcludeInSchema=true, ParameterType="path") open var invoiceId:UUID? = null /** * Customer invoice reference in destination system */ @ApiMember(Description="Customer invoice reference in destination system") open var customerReference:String? = null /** * Date and Time invoice was processed in destination system */ @ApiMember(Description="Date and Time invoice was processed in destination system") open var customerProcessedDate:Date? = null companion object { private val responseType = TokenDto::class.java } override fun getResponseType(): Any? = UpdateInvoiceClientProcessed.responseType } open class TokenDto : ICommandResponse { open var token:UUID? = null } interface ICommandResponse { }