/* Options: Date: 2025-07-04 08:24:58 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: GetDocumentViews.* //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="/documentviews", Verbs="GET") public static class GetDocumentViews implements IReturn> { public Boolean IncludeExplorers = null; public UUID WorkspaceID = null; public Boolean isIncludeExplorers() { return IncludeExplorers; } public GetDocumentViews setIncludeExplorers(Boolean value) { this.IncludeExplorers = value; return this; } public UUID getWorkspaceID() { return WorkspaceID; } public GetDocumentViews setWorkspaceID(UUID value) { this.WorkspaceID = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class Explorer { public UUID ID = null; public String Title = null; public Integer Order = null; public UUID getId() { return ID; } public Explorer setId(UUID value) { this.ID = value; return this; } public String getTitle() { return Title; } public Explorer setTitle(String value) { this.Title = value; return this; } public Integer getOrder() { return Order; } public Explorer setOrder(Integer value) { this.Order = value; return this; } } @DataContract public static class MobileView { @DataMember public UUID ID = null; @DataMember public String Title = null; @DataMember public String ImageUrl = null; @DataMember public Integer ChildrenCount = null; @DataMember public Integer Order = null; @DataMember public ArrayList Explorers = null; public UUID getId() { return ID; } public MobileView setId(UUID value) { this.ID = value; return this; } public String getTitle() { return Title; } public MobileView setTitle(String value) { this.Title = value; return this; } public String getImageUrl() { return ImageUrl; } public MobileView setImageUrl(String value) { this.ImageUrl = value; return this; } public Integer getChildrenCount() { return ChildrenCount; } public MobileView setChildrenCount(Integer value) { this.ChildrenCount = value; return this; } public Integer getOrder() { return Order; } public MobileView setOrder(Integer value) { this.Order = value; return this; } public ArrayList getExplorers() { return Explorers; } public MobileView setExplorers(ArrayList value) { this.Explorers = value; return this; } } public static class DocumentView extends MobileView { @DataMember public String TranslateKey = null; @DataMember public String SiteMapKey = null; public String getTranslateKey() { return TranslateKey; } public DocumentView setTranslateKey(String value) { this.TranslateKey = value; return this; } public String getSiteMapKey() { return SiteMapKey; } public DocumentView setSiteMapKey(String value) { this.SiteMapKey = value; return this; } } }