/* Options: Date: 2025-08-05 02:12:19 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetServices.* //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="/apiservice/services", Verbs="GET") public static class GetServices implements IReturn { public Boolean Types = null; public Boolean isTypes() { return Types; } public GetServices setTypes(Boolean value) { this.Types = value; return this; } private static Object responseType = ServicesResponse.class; public Object getResponseType() { return responseType; } } public static class ServicesResponse { public ArrayList Services = null; public String ErrorMessage = null; public ArrayList getServices() { return Services; } public ServicesResponse setServices(ArrayList value) { this.Services = value; return this; } public String getErrorMessage() { return ErrorMessage; } public ServicesResponse setErrorMessage(String value) { this.ErrorMessage = value; return this; } } }