/* Options: Date: 2024-07-06 12:25:29 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_RequestAddedForRequest.* //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/requestaddedfor", Verbs="POST") open class CDDResponse_RequestAddedForRequest : IReturn { var ApplicationGUID:String? = null var CDDCheckID:Int? = null companion object { private val responseType = EventStore::class.java } override fun getResponseType(): Any? = CDDResponse_RequestAddedForRequest.responseType } open class EventStore { var ApplicationGUID:String? = null var StatusCode:Int? = null var CDDEngineAppGUID:String? = null var AuditFileID:String? = null var Request:String? = null var ResponseDesc:String? = null var Response:String? = null var DateAdded:Date? = null var AddedBy:String? = null var DateChecked:Date? = null var CDDCheckID:Int? = null }