/* Options: Date: 2024-07-06 12:59:40 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: CDDResponse_RequestAddedForRequest.* //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/requestaddedfor", Verbs="POST") public static class CDDResponse_RequestAddedForRequest implements IReturn { public String ApplicationGUID = null; public Integer CDDCheckID = null; public String getApplicationGUID() { return ApplicationGUID; } public CDDResponse_RequestAddedForRequest setApplicationGUID(String value) { this.ApplicationGUID = value; return this; } public Integer getCddCheckID() { return CDDCheckID; } public CDDResponse_RequestAddedForRequest setCddCheckID(Integer value) { this.CDDCheckID = value; return this; } private static Object responseType = EventStore.class; public Object getResponseType() { return responseType; } } public static class EventStore { public String ApplicationGUID = null; public Integer StatusCode = null; public String CDDEngineAppGUID = null; public String AuditFileID = null; public String Request = null; public String ResponseDesc = null; public String Response = null; public Date DateAdded = null; public String AddedBy = null; public Date DateChecked = null; public Integer CDDCheckID = null; public String getApplicationGUID() { return ApplicationGUID; } public EventStore setApplicationGUID(String value) { this.ApplicationGUID = value; return this; } public Integer getStatusCode() { return StatusCode; } public EventStore setStatusCode(Integer value) { this.StatusCode = value; return this; } public String getCddEngineAppGUID() { return CDDEngineAppGUID; } public EventStore setCddEngineAppGUID(String value) { this.CDDEngineAppGUID = value; return this; } public String getAuditFileID() { return AuditFileID; } public EventStore setAuditFileID(String value) { this.AuditFileID = value; return this; } public String getRequest() { return Request; } public EventStore setRequest(String value) { this.Request = value; return this; } public String getResponseDesc() { return ResponseDesc; } public EventStore setResponseDesc(String value) { this.ResponseDesc = value; return this; } public String getResponse() { return Response; } public EventStore setResponse(String value) { this.Response = value; return this; } public Date getDateAdded() { return DateAdded; } public EventStore setDateAdded(Date value) { this.DateAdded = value; return this; } public String getAddedBy() { return AddedBy; } public EventStore setAddedBy(String value) { this.AddedBy = value; return this; } public Date getDateChecked() { return DateChecked; } public EventStore setDateChecked(Date value) { this.DateChecked = value; return this; } public Integer getCddCheckID() { return CDDCheckID; } public EventStore setCddCheckID(Integer value) { this.CDDCheckID = value; return this; } } }