/* Options: Date: 2024-07-06 12:10:52 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://abservice-featuretest.worldpay.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ApplicationJsonRequest.* //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="/ApplicationJson", Verbs="GET") // @Route(Path="/ApplicationJson/{AppQueue_GUID}", Verbs="GET") public static class ApplicationJsonRequest implements IReturn { public UUID appQueue_GUID = null; public UUID getAppQueueGuid() { return appQueue_GUID; } public ApplicationJsonRequest setAppQueueGuid(UUID value) { this.appQueue_GUID = value; return this; } private static Object responseType = String.class; public Object getResponseType() { return responseType; } } }