/* Options: Date: 2025-07-04 08:00:55 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetViewsAndExplorers.* //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="/Navigation/ViewsAndExplorers", Verbs="GET") // @Route(Path="/Navigation/ViewsAndExplorers/{FlattenHierarchy}", Verbs="GET") public static class GetViewsAndExplorers implements IReturn { public Boolean FlattenHierarchy = null; public String ProgCode = null; public Boolean isFlattenHierarchy() { return FlattenHierarchy; } public GetViewsAndExplorers setFlattenHierarchy(Boolean value) { this.FlattenHierarchy = value; return this; } public String getProgCode() { return ProgCode; } public GetViewsAndExplorers setProgCode(String value) { this.ProgCode = value; return this; } private static Object responseType = GetViewsAndExplorers.class; public Object getResponseType() { return responseType; } } }