/* Options: Date: 2024-07-06 11:52:21 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: AllChecksDataFromXMLRequest.* //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="/allchecks/submit/xml", Verbs="POST") public static class AllChecksDataFromXMLRequest { public String ApplicationGUID = null; public Integer CSR = null; public String ApplicationXML = null; public String SourceCode = null; public String NapPartyId = null; public String getApplicationGUID() { return ApplicationGUID; } public AllChecksDataFromXMLRequest setApplicationGUID(String value) { this.ApplicationGUID = value; return this; } public Integer getCsr() { return CSR; } public AllChecksDataFromXMLRequest setCsr(Integer value) { this.CSR = value; return this; } public String getApplicationXML() { return ApplicationXML; } public AllChecksDataFromXMLRequest setApplicationXML(String value) { this.ApplicationXML = value; return this; } public String getSourceCode() { return SourceCode; } public AllChecksDataFromXMLRequest setSourceCode(String value) { this.SourceCode = value; return this; } public String getNapPartyId() { return NapPartyId; } public AllChecksDataFromXMLRequest setNapPartyId(String value) { this.NapPartyId = value; return this; } } }