/* Options: Date: 2025-07-04 09:34:18 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: GetNavigators.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/views/{ViewId}/explorers/{ExplorerId}/navigators", Verbs="GET") // @Route(Path="/documentviews/{ViewId}/explorers/{ExplorerId}/navigators", Verbs="GET") public static class GetNavigators implements IReturn> { public UUID ViewId = null; public UUID ExplorerId = null; public String Path = null; public String NodeExplorerID = null; public String SearchCriteria = null; public UUID getViewId() { return ViewId; } public GetNavigators setViewId(UUID value) { this.ViewId = value; return this; } public UUID getExplorerId() { return ExplorerId; } public GetNavigators setExplorerId(UUID value) { this.ExplorerId = value; return this; } public String getPath() { return Path; } public GetNavigators setPath(String value) { this.Path = value; return this; } public String getNodeExplorerID() { return NodeExplorerID; } public GetNavigators setNodeExplorerID(String value) { this.NodeExplorerID = value; return this; } public String getSearchCriteria() { return SearchCriteria; } public GetNavigators setSearchCriteria(String value) { this.SearchCriteria = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }