/* Options: Date: 2026-09-01 03:49:46 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: IntroductionsAutoQueryDelete.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class Introductions implements IConvertible { // @DataMember(Order=1) // @required() int? id; // @DataMember(Order=2) // @required() // @References(typeof(Tenants)) int? tenatnsId; // @DataMember(Order=3) // @required() String? sections; Introductions({this.id,this.tenatnsId,this.sections}); Introductions.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; tenatnsId = json['tenatnsId']; sections = json['sections']; return this; } Map toJson() => { 'id': id, 'tenatnsId': tenatnsId, 'sections': sections }; getTypeName() => "Introductions"; TypeContext? context = _ctx; } class IntroductionsAutoQueryDelete implements IReturnVoid, IDeleteDb, IConvertible, IDelete { // @DataMember(Order=1) int? id; // @DataMember(Order=5) ResponseStatus? responseStatus; IntroductionsAutoQueryDelete({this.id,this.responseStatus}); IntroductionsAutoQueryDelete.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'id': id, 'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!) }; createResponse() {} getTypeName() => "IntroductionsAutoQueryDelete"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api_stage.smartfarmertech.com', types: { 'Introductions': TypeInfo(TypeOf.Class, create:() => Introductions()), 'IntroductionsAutoQueryDelete': TypeInfo(TypeOf.Class, create:() => IntroductionsAutoQueryDelete()), });