/* Options: Date: 2026-09-01 03:47:51 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api-stage.smartfarmertech.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SystemEntitiesAutoQueryLookup.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class SystemEntities implements IConvertible { // @DataMember(Order=1) // @required() int? id; // @DataMember(Order=2) // @required() String? entity; // @DataMember(Order=3) // @required() String? longDescription; SystemEntities({this.id,this.entity,this.longDescription}); SystemEntities.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; entity = json['entity']; longDescription = json['longDescription']; return this; } Map toJson() => { 'id': id, 'entity': entity, 'longDescription': longDescription }; getTypeName() => "SystemEntities"; TypeContext? context = _ctx; } class SystemEntitiesAutoQueryLookup extends QueryDb implements IReturn>, IConvertible, IGet { SystemEntitiesAutoQueryLookup(); SystemEntitiesAutoQueryLookup.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); createResponse() => QueryResponse(); getResponseTypeName() => "QueryResponse"; getTypeName() => "SystemEntitiesAutoQueryLookup"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api_stage.smartfarmertech.com', types: { 'SystemEntities': TypeInfo(TypeOf.Class, create:() => SystemEntities()), 'QueryResponse': TypeInfo(TypeOf.Class, create:() => QueryResponse()), 'SystemEntitiesAutoQueryLookup': TypeInfo(TypeOf.Class, create:() => SystemEntitiesAutoQueryLookup()), 'List': TypeInfo(TypeOf.Class, create:() => []), });