/* Options: Date: 2025-04-11 09:09:25 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: GetDocumentViewDetails.* //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="/documentviews/{Key}", Verbs="GET POST") public static class GetDocumentViewDetails implements IReturn { public String Key = null; public Boolean IncludeExplorers = null; public String getKey() { return Key; } public GetDocumentViewDetails setKey(String value) { this.Key = value; return this; } public Boolean isIncludeExplorers() { return IncludeExplorers; } public GetDocumentViewDetails setIncludeExplorers(Boolean value) { this.IncludeExplorers = value; return this; } private static Object responseType = DocumentView.class; public Object getResponseType() { return responseType; } } 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; } } 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; } } }