/* Options: Date: 2024-07-06 12:32:47 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://wpcdd-featuretest-ws.worldpay.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CDDResponseRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/response/request", Verbs="POST") public static class CDDResponseRequest implements IReturn { public String ApplicationGUID = null; public String getApplicationGUID() { return ApplicationGUID; } public CDDResponseRequest setApplicationGUID(String value) { this.ApplicationGUID = value; return this; } private static Object responseType = EventResponse.class; public Object getResponseType() { return responseType; } } public static class EventResponse { public String ApplicationGUID = null; public String AuditFileID = null; public String ResponseDesc = null; public String ReportURL = null; public String EventType = null; public Date DateChecked = null; public Integer CDDCheckID = null; public Integer StatusCode = null; public String getApplicationGUID() { return ApplicationGUID; } public EventResponse setApplicationGUID(String value) { this.ApplicationGUID = value; return this; } public String getAuditFileID() { return AuditFileID; } public EventResponse setAuditFileID(String value) { this.AuditFileID = value; return this; } public String getResponseDesc() { return ResponseDesc; } public EventResponse setResponseDesc(String value) { this.ResponseDesc = value; return this; } public String getReportURL() { return ReportURL; } public EventResponse setReportURL(String value) { this.ReportURL = value; return this; } public String getEventType() { return EventType; } public EventResponse setEventType(String value) { this.EventType = value; return this; } public Date getDateChecked() { return DateChecked; } public EventResponse setDateChecked(Date value) { this.DateChecked = value; return this; } public Integer getCddCheckID() { return CDDCheckID; } public EventResponse setCddCheckID(Integer value) { this.CDDCheckID = value; return this; } public Integer getStatusCode() { return StatusCode; } public EventResponse setStatusCode(Integer value) { this.StatusCode = value; return this; } } }