/* Options: Date: 2024-07-06 12:32:10 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://wpcdd-featuretest-ws.worldpay.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CDDResponse_RetrieveChecksAddedByIDRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/response/checksaddedbyid", Verbs="POST") open class CDDResponse_RetrieveChecksAddedByIDRequest : IReturn { var ApplicationGUID:String? = null var CDDCheckID:Int? = null companion object { private val responseType = EventStoreResults::class.java } override fun getResponseType(): Any? = CDDResponse_RetrieveChecksAddedByIDRequest.responseType } open class EventStoreResults { var ResultsID:Int? = null var ApplicationGUID:String? = null var CDDCheckID:Int? = null var CDDCheckOutcome:String? = null var ResultCheckID:String? = null var ResultJSON:String? = null var DateResultAdded:String? = null }