/* Options: Date: 2026-05-09 17:14:15 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: OnlinehandelInfoBoxImportRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class OnlinehandelInfoBoxImportResponse implements IConvertible { String? error; bool? result; OnlinehandelInfoBoxImportResponse({this.error,this.result}); OnlinehandelInfoBoxImportResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { error = json['error']; result = json['result']; return this; } Map toJson() => { 'error': error, 'result': result }; getTypeName() => "OnlinehandelInfoBoxImportResponse"; TypeContext? context = _ctx; } // @Route("/fibuscan/Onlinehandel/info-box-details/import", "GET, POST") class OnlinehandelInfoBoxImportRequest implements IReturn, IConvertible, IPost { String? wert; DateTime? vonDatum; DateTime? bisDatum; bool? aktiv; bool? istWebclient2Aktiv; bool? istWebclient3Aktiv; bool? istWebclientAlphaAktiv; OnlinehandelInfoBoxImportRequest({this.wert,this.vonDatum,this.bisDatum,this.aktiv,this.istWebclient2Aktiv,this.istWebclient3Aktiv,this.istWebclientAlphaAktiv}); OnlinehandelInfoBoxImportRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { wert = json['wert']; vonDatum = JsonConverters.fromJson(json['vonDatum'],'DateTime',context!); bisDatum = JsonConverters.fromJson(json['bisDatum'],'DateTime',context!); aktiv = json['aktiv']; istWebclient2Aktiv = json['istWebclient2Aktiv']; istWebclient3Aktiv = json['istWebclient3Aktiv']; istWebclientAlphaAktiv = json['istWebclientAlphaAktiv']; return this; } Map toJson() => { 'wert': wert, 'vonDatum': JsonConverters.toJson(vonDatum,'DateTime',context!), 'bisDatum': JsonConverters.toJson(bisDatum,'DateTime',context!), 'aktiv': aktiv, 'istWebclient2Aktiv': istWebclient2Aktiv, 'istWebclient3Aktiv': istWebclient3Aktiv, 'istWebclientAlphaAktiv': istWebclientAlphaAktiv }; createResponse() => OnlinehandelInfoBoxImportResponse(); getResponseTypeName() => "OnlinehandelInfoBoxImportResponse"; getTypeName() => "OnlinehandelInfoBoxImportRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'ws4.fibudata.net', types: { 'OnlinehandelInfoBoxImportResponse': TypeInfo(TypeOf.Class, create:() => OnlinehandelInfoBoxImportResponse()), 'OnlinehandelInfoBoxImportRequest': TypeInfo(TypeOf.Class, create:() => OnlinehandelInfoBoxImportRequest()), });