/* Options: Date: 2025-12-06 05:21:41 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetMyNavigationRequest.* //ExcludeTypes: //DefaultImports: */ export interface IGet { } export class GetMyNavigationResponse { public Items: AppNavItem[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/v1/me/navigation", "GET,OPTIONS") export class GetMyNavigationRequest implements IReturn, IGet { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetMyNavigationRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new GetMyNavigationResponse(); } }