/* Options: Date: 2026-05-19 05:29:26 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AdminQueryScriptRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { public static class AdminQueryScriptRequest implements IReturn { public String queryName = null; public String queryParametersAsString = null; public HashMap queryParameters = null; public String queryFilter = null; public String queryOrder = null; public String getQueryName() { return queryName; } public AdminQueryScriptRequest setQueryName(String value) { this.queryName = value; return this; } public String getQueryParametersAsString() { return queryParametersAsString; } public AdminQueryScriptRequest setQueryParametersAsString(String value) { this.queryParametersAsString = value; return this; } public HashMap getQueryParameters() { return queryParameters; } public AdminQueryScriptRequest setQueryParameters(HashMap value) { this.queryParameters = value; return this; } public String getQueryFilter() { return queryFilter; } public AdminQueryScriptRequest setQueryFilter(String value) { this.queryFilter = value; return this; } public String getQueryOrder() { return queryOrder; } public AdminQueryScriptRequest setQueryOrder(String value) { this.queryOrder = value; return this; } private static Object responseType = AdminQueryScriptResults.class; public Object getResponseType() { return responseType; } } public static class AdminQueryScriptResults { public Object data = null; public Integer statusCode = null; public String message = null; public Object getData() { return data; } public AdminQueryScriptResults setData(Object value) { this.data = value; return this; } public Integer getStatusCode() { return statusCode; } public AdminQueryScriptResults setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public AdminQueryScriptResults setMessage(String value) { this.message = value; return this; } } }