/* Options: Date: 2026-09-01 03:45:43 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: SystemFunctionsAutoQueryLookup.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class SystemFunctions implements IConvertible { // @DataMember(Order=1) // @required() int? id; // @DataMember(Order=2) // @required() String? systemFunction; // @DataMember(Order=3) // @required() String? longDescription; SystemFunctions({this.id,this.systemFunction,this.longDescription}); SystemFunctions.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; systemFunction = json['systemFunction']; longDescription = json['longDescription']; return this; } Map toJson() => { 'id': id, 'systemFunction': systemFunction, 'longDescription': longDescription }; getTypeName() => "SystemFunctions"; TypeContext? context = _ctx; } class SystemFunctionsAutoQueryLookup extends QueryDb implements IReturn>, IConvertible, IGet { SystemFunctionsAutoQueryLookup(); SystemFunctionsAutoQueryLookup.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); createResponse() => QueryResponse(); getResponseTypeName() => "QueryResponse"; getTypeName() => "SystemFunctionsAutoQueryLookup"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api_stage.smartfarmertech.com', types: { 'SystemFunctions': TypeInfo(TypeOf.Class, create:() => SystemFunctions()), 'QueryResponse': TypeInfo(TypeOf.Class, create:() => QueryResponse()), 'SystemFunctionsAutoQueryLookup': TypeInfo(TypeOf.Class, create:() => SystemFunctionsAutoQueryLookup()), 'List': TypeInfo(TypeOf.Class, create:() => []), });