/* Options: Date: 2026-05-09 17:15:20 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws4.fibudata.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: OnlinehandelTreffertypenRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class onlinehandel_treffertypen implements IPrimaryKey, IMandnr, IDel, ITableBase, IConvertible { int? id; String? guid; int? mandant; int? del; int? parent_id; int? soll_parsen; String? bezeichnung; DateTime? _erstellt; DateTime? _aenderung; int? suchfeld1; String? suchfeld1_text; int? suchfeld2; String? suchfeld2_text; // @Ignore() int? PrimaryKey; onlinehandel_treffertypen({this.id,this.guid,this.mandant,this.del,this.parent_id,this.soll_parsen,this.bezeichnung,this._erstellt,this._aenderung,this.suchfeld1,this.suchfeld1_text,this.suchfeld2,this.suchfeld2_text,this.PrimaryKey}); onlinehandel_treffertypen.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; guid = json['guid']; mandant = json['mandant']; del = json['del']; parent_id = json['parent_id']; soll_parsen = json['soll_parsen']; bezeichnung = json['bezeichnung']; _erstellt = JsonConverters.fromJson(json['_erstellt'],'DateTime',context!); _aenderung = JsonConverters.fromJson(json['_aenderung'],'DateTime',context!); suchfeld1 = json['suchfeld1']; suchfeld1_text = json['suchfeld1_text']; suchfeld2 = json['suchfeld2']; suchfeld2_text = json['suchfeld2_text']; PrimaryKey = json['PrimaryKey']; return this; } Map toJson() => { 'id': id, 'guid': guid, 'mandant': mandant, 'del': del, 'parent_id': parent_id, 'soll_parsen': soll_parsen, 'bezeichnung': bezeichnung, '_erstellt': JsonConverters.toJson(_erstellt,'DateTime',context!), '_aenderung': JsonConverters.toJson(_aenderung,'DateTime',context!), 'suchfeld1': suchfeld1, 'suchfeld1_text': suchfeld1_text, 'suchfeld2': suchfeld2, 'suchfeld2_text': suchfeld2_text, 'PrimaryKey': PrimaryKey }; getTypeName() => "onlinehandel_treffertypen"; TypeContext? context = _ctx; } abstract class IPrimaryKey { int? PrimaryKey; } abstract class IMandnr { int? mandant; } abstract class IDel { int? del; } abstract class ITableBase { int? id; DateTime? _erstellt; DateTime? _aenderung; } class OnlinehandelTreffertypenResponse implements IConvertible { List? Liste; OnlinehandelTreffertypenResponse({this.Liste}); OnlinehandelTreffertypenResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Liste = JsonConverters.fromJson(json['Liste'],'List',context!); return this; } Map toJson() => { 'Liste': JsonConverters.toJson(Liste,'List',context!) }; getTypeName() => "OnlinehandelTreffertypenResponse"; TypeContext? context = _ctx; } // @Route("/fibuscan/OnlinehandelTreffertypen", "GET, POST") class OnlinehandelTreffertypenRequest implements IReturn, IConvertible, IPost { String? expression; int? limit; OnlinehandelTreffertypenRequest({this.expression,this.limit}); OnlinehandelTreffertypenRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { expression = json['expression']; limit = json['limit']; return this; } Map toJson() => { 'expression': expression, 'limit': limit }; createResponse() => OnlinehandelTreffertypenResponse(); getResponseTypeName() => "OnlinehandelTreffertypenResponse"; getTypeName() => "OnlinehandelTreffertypenRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'ws4.fibudata.net', types: { 'onlinehandel_treffertypen': TypeInfo(TypeOf.Class, create:() => onlinehandel_treffertypen()), 'IPrimaryKey': TypeInfo(TypeOf.Interface), 'IMandnr': TypeInfo(TypeOf.Interface), 'IDel': TypeInfo(TypeOf.Interface), 'ITableBase': TypeInfo(TypeOf.Interface), 'OnlinehandelTreffertypenResponse': TypeInfo(TypeOf.Class, create:() => OnlinehandelTreffertypenResponse()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'OnlinehandelTreffertypenRequest': TypeInfo(TypeOf.Class, create:() => OnlinehandelTreffertypenRequest()), });