/* Options: Date: 2025-12-06 12:26:30 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sfgboxapi.dev.scadsoftware.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AppUserSystemFunctionsLookup.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/appusersystemfunctions", "GET") export class AppUserSystemFunctionsLookup implements IReturn { public id: number; public displayName: string; public systemFunction: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'AppUserSystemFunctionsLookup'; } public getMethod() { return 'GET'; } public createResponse() { return new Array(); } }