/* Options: Date: 2024-07-06 13:30:33 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://abservice-featuretest.worldpay.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ApplicationXmlRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/ApplicationXml", Verbs="GET") // @Route(Path="/ApplicationXml/{AppQueue_GUID}", Verbs="GET") open class ApplicationXmlRequest : IReturn { var appQueue_GUID:UUID? = null companion object { private val responseType = String::class.java } override fun getResponseType(): Any? = ApplicationXmlRequest.responseType }