/* 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: GetNavigatorInfo.* //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 GetNavigatorInfo { public UUID ViewId = null; public UUID ExplorerID = null; public String NavigationPath = null; public UUID getViewId() { return ViewId; } public GetNavigatorInfo setViewId(UUID value) { this.ViewId = value; return this; } public UUID getExplorerID() { return ExplorerID; } public GetNavigatorInfo setExplorerID(UUID value) { this.ExplorerID = value; return this; } public String getNavigationPath() { return NavigationPath; } public GetNavigatorInfo setNavigationPath(String value) { this.NavigationPath = value; return this; } } }