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