/* Options: Date: 2025-12-06 09:52:59 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sfgboxapi.dev.scadsoftware.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AppUserSystemFunctionsLookup.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/appusersystemfunctions", "GET") class AppUserSystemFunctionsLookup implements IReturn>, IConvertible, IGet { int? id; String? displayName; String? systemFunction; AppUserSystemFunctionsLookup({this.id,this.displayName,this.systemFunction}); AppUserSystemFunctionsLookup.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; displayName = json['displayName']; systemFunction = json['systemFunction']; return this; } Map toJson() => { 'id': id, 'displayName': displayName, 'systemFunction': systemFunction }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "AppUserSystemFunctionsLookup"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'sfgboxapi.dev.scadsoftware.com', types: { 'AppUserSystemFunctionsLookup': TypeInfo(TypeOf.Class, create:() => AppUserSystemFunctionsLookup()), });