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