/* Options: Date: 2026-03-31 19:57:06 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-dogw.klokgroep.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetNavigationContext.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/navigation/context", Verbs="GET") public static class GetNavigationContext implements IReturn { public UUID ViewID = null; public String Path = null; public UUID getViewID() { return ViewID; } public GetNavigationContext setViewID(UUID value) { this.ViewID = value; return this; } public String getPath() { return Path; } public GetNavigationContext setPath(String value) { this.Path = value; return this; } private static Object responseType = NavigationContext.class; public Object getResponseType() { return responseType; } } public static class NavigationContext { public String Title = null; public ArrayList NavigationElements = null; public String getTitle() { return Title; } public NavigationContext setTitle(String value) { this.Title = value; return this; } public ArrayList getNavigationElements() { return NavigationElements; } public NavigationContext setNavigationElements(ArrayList value) { this.NavigationElements = value; return this; } } public static class CommonEntityIdentifier { public String ID = null; public String DisplayName = null; public String EntityName = null; public String getId() { return ID; } public CommonEntityIdentifier setId(String value) { this.ID = value; return this; } public String getDisplayName() { return DisplayName; } public CommonEntityIdentifier setDisplayName(String value) { this.DisplayName = value; return this; } public String getEntityName() { return EntityName; } public CommonEntityIdentifier setEntityName(String value) { this.EntityName = value; return this; } } }