/* Options: Date: 2026-05-09 18:00:25 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: MusterRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class MusterResponse implements IConvertible { String? error; List? Liste; MusterResponse({this.error,this.Liste}); MusterResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { error = json['error']; Liste = JsonConverters.fromJson(json['Liste'],'List',context!); return this; } Map toJson() => { 'error': error, 'Liste': JsonConverters.toJson(Liste,'List',context!) }; getTypeName() => "MusterResponse"; TypeContext? context = _ctx; } // @Route("/fibuscan/Muster", "GET, POST") class MusterRequest implements IReturn, IConvertible, IPost { String? text; DateTime? datum; MusterRequest({this.text,this.datum}); MusterRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { text = json['text']; datum = JsonConverters.fromJson(json['datum'],'DateTime',context!); return this; } Map toJson() => { 'text': text, 'datum': JsonConverters.toJson(datum,'DateTime',context!) }; createResponse() => MusterResponse(); getResponseTypeName() => "MusterResponse"; getTypeName() => "MusterRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'ws4.fibudata.net', types: { 'MusterResponse': TypeInfo(TypeOf.Class, create:() => MusterResponse()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'MusterRequest': TypeInfo(TypeOf.Class, create:() => MusterRequest()), });