/* Options: Date: 2024-10-18 04:26:44 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ViewsAndExplorers.* //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 ViewsAndExplorers implements IReturn { public ArrayList Nodes = null; public ArrayList getNodes() { return Nodes; } public ViewsAndExplorers setNodes(ArrayList value) { this.Nodes = value; return this; } private static Object responseType = ViewsAndExplorers.class; public Object getResponseType() { return responseType; } } public static class ViewExplorerNode extends Node { public UUID ViewId = null; public UUID ExplorerId = null; public ArrayList ChildNodes = null; public UUID getViewId() { return ViewId; } public ViewExplorerNode setViewId(UUID value) { this.ViewId = value; return this; } public UUID getExplorerId() { return ExplorerId; } public ViewExplorerNode setExplorerId(UUID value) { this.ExplorerId = value; return this; } public ArrayList getChildNodes() { return ChildNodes; } public ViewExplorerNode setChildNodes(ArrayList value) { this.ChildNodes = value; return this; } } public static class Node { public String EntityName = null; public String ID = null; public String ParentID = null; public String Title = null; public Integer Count = null; public String ImageKey = null; public Boolean Expanded = null; public Boolean Selected = null; public String DisplayPath = null; public ArrayList ChildNodes = null; public String RegistrationPathElement = null; public String QueryPathElement = null; public String Path = null; public Boolean IsHierarchy = null; public String getEntityName() { return EntityName; } public Node setEntityName(String value) { this.EntityName = value; return this; } public String getId() { return ID; } public Node setId(String value) { this.ID = value; return this; } public String getParentID() { return ParentID; } public Node setParentID(String value) { this.ParentID = value; return this; } public String getTitle() { return Title; } public Node setTitle(String value) { this.Title = value; return this; } public Integer getCount() { return Count; } public Node setCount(Integer value) { this.Count = value; return this; } public String getImageKey() { return ImageKey; } public Node setImageKey(String value) { this.ImageKey = value; return this; } public Boolean isExpanded() { return Expanded; } public Node setExpanded(Boolean value) { this.Expanded = value; return this; } public Boolean isSelected() { return Selected; } public Node setSelected(Boolean value) { this.Selected = value; return this; } public String getDisplayPath() { return DisplayPath; } public Node setDisplayPath(String value) { this.DisplayPath = value; return this; } public ArrayList getChildNodes() { return ChildNodes; } public Node setChildNodes(ArrayList value) { this.ChildNodes = value; return this; } public String getRegistrationPathElement() { return RegistrationPathElement; } public Node setRegistrationPathElement(String value) { this.RegistrationPathElement = value; return this; } public String getQueryPathElement() { return QueryPathElement; } public Node setQueryPathElement(String value) { this.QueryPathElement = value; return this; } public String getPath() { return Path; } public Node setPath(String value) { this.Path = value; return this; } public Boolean getIsHierarchy() { return IsHierarchy; } public Node setIsHierarchy(Boolean value) { this.IsHierarchy = value; return this; } } }