/* Options: Date: 2024-07-06 12:48:23 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://wp-cddws-test.worldpay.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CDDResponse_RetrieveChecksAddedByIDRequest.* //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/checksaddedbyid", Verbs="POST") public static class CDDResponse_RetrieveChecksAddedByIDRequest implements IReturn { public String ApplicationGUID = null; public Integer CDDCheckID = null; public String getApplicationGUID() { return ApplicationGUID; } public CDDResponse_RetrieveChecksAddedByIDRequest setApplicationGUID(String value) { this.ApplicationGUID = value; return this; } public Integer getCddCheckID() { return CDDCheckID; } public CDDResponse_RetrieveChecksAddedByIDRequest setCddCheckID(Integer value) { this.CDDCheckID = value; return this; } private static Object responseType = EventStoreResults.class; public Object getResponseType() { return responseType; } } public static class EventStoreResults { public Integer ResultsID = null; public String ApplicationGUID = null; public Integer CDDCheckID = null; public String CDDCheckOutcome = null; public String ResultCheckID = null; public String ResultJSON = null; public String DateResultAdded = null; public Integer getResultsID() { return ResultsID; } public EventStoreResults setResultsID(Integer value) { this.ResultsID = value; return this; } public String getApplicationGUID() { return ApplicationGUID; } public EventStoreResults setApplicationGUID(String value) { this.ApplicationGUID = value; return this; } public Integer getCddCheckID() { return CDDCheckID; } public EventStoreResults setCddCheckID(Integer value) { this.CDDCheckID = value; return this; } public String getCddCheckOutcome() { return CDDCheckOutcome; } public EventStoreResults setCddCheckOutcome(String value) { this.CDDCheckOutcome = value; return this; } public String getResultCheckID() { return ResultCheckID; } public EventStoreResults setResultCheckID(String value) { this.ResultCheckID = value; return this; } public String getResultJSON() { return ResultJSON; } public EventStoreResults setResultJSON(String value) { this.ResultJSON = value; return this; } public String getDateResultAdded() { return DateResultAdded; } public EventStoreResults setDateResultAdded(String value) { this.DateResultAdded = value; return this; } } }