/* Options: Date: 2025-08-05 02:20:51 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: GetSites.* //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="/diagnostics/sites/{forContentType}", Verbs="GET") public static class GetSites { public ContentType ForContentType = null; public ContentType getForContentType() { return ForContentType; } public GetSites setForContentType(ContentType value) { this.ForContentType = value; return this; } } public static enum ContentType { Pages, Libraries; } }