/* Options: Date: 2026-05-09 18:02:43 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: OnlinehandelInfoBoxAktivRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class OnlinehandelInfoBoxAktivResponse implements IConvertible { String? error; bool? result; OnlinehandelInfoBoxAktivResponse({this.error,this.result}); OnlinehandelInfoBoxAktivResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { error = json['error']; result = json['result']; return this; } Map toJson() => { 'error': error, 'result': result }; getTypeName() => "OnlinehandelInfoBoxAktivResponse"; TypeContext? context = _ctx; } // @Route("/fibuscan/Onlinehandel/infobox/aktiv", "GET, POST") class OnlinehandelInfoBoxAktivRequest implements IReturn, IConvertible, IPost { bool? aktiv; OnlinehandelInfoBoxAktivRequest({this.aktiv}); OnlinehandelInfoBoxAktivRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { aktiv = json['aktiv']; return this; } Map toJson() => { 'aktiv': aktiv }; createResponse() => OnlinehandelInfoBoxAktivResponse(); getResponseTypeName() => "OnlinehandelInfoBoxAktivResponse"; getTypeName() => "OnlinehandelInfoBoxAktivRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'ws4.fibudata.net', types: { 'OnlinehandelInfoBoxAktivResponse': TypeInfo(TypeOf.Class, create:() => OnlinehandelInfoBoxAktivResponse()), 'OnlinehandelInfoBoxAktivRequest': TypeInfo(TypeOf.Class, create:() => OnlinehandelInfoBoxAktivRequest()), });