/* Options: Date: 2025-12-06 09:52:58 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: SystemFunctionsLookup.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/system_functions", "GET") // @DataContract class SystemFunctionsLookup implements IReturn>, IConvertible, IGet { // @DataMember(Order=2) String? systemFunction; // @DataMember(Order=3) String? longDescription; SystemFunctionsLookup({this.systemFunction,this.longDescription}); SystemFunctionsLookup.fromJson(Map json) { fromMap(json); } fromMap(Map json) { systemFunction = json['systemFunction']; longDescription = json['longDescription']; return this; } Map toJson() => { 'systemFunction': systemFunction, 'longDescription': longDescription }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "SystemFunctionsLookup"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'sfgboxapi.dev.scadsoftware.com', types: { 'SystemFunctionsLookup': TypeInfo(TypeOf.Class, create:() => SystemFunctionsLookup()), });