/* Options: Date: 2024-07-06 12:17:55 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://wp-cddws-test.worldpay.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CDDResponseRequest.* //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/request", Verbs="POST") open class CDDResponseRequest : IReturn { var ApplicationGUID:String? = null companion object { private val responseType = EventResponse::class.java } override fun getResponseType(): Any? = CDDResponseRequest.responseType } open class EventResponse { var ApplicationGUID:String? = null var AuditFileID:String? = null var ResponseDesc:String? = null var ReportURL:String? = null var EventType:String? = null var DateChecked:Date? = null var CDDCheckID:Int? = null var StatusCode:Int? = null }