/* Options: Date: 2026-05-09 17:14: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: OnlinehandelDownloadCSVRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class OnlinehandelDownloadCSVResponse implements IConvertible { Uint8List? CsvDatei; OnlinehandelDownloadCSVResponse({this.CsvDatei}); OnlinehandelDownloadCSVResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CsvDatei = JsonConverters.fromJson(json['CsvDatei'],'Uint8List',context!); return this; } Map toJson() => { 'CsvDatei': JsonConverters.toJson(CsvDatei,'Uint8List',context!) }; getTypeName() => "OnlinehandelDownloadCSVResponse"; TypeContext? context = _ctx; } // @Route("/fibuscan/Onlinehandel/DownloadCSV", "GET, POST") class OnlinehandelDownloadCSVRequest implements IReturn, IConvertible, IPost { List? GuidListe; OnlinehandelDownloadCSVRequest({this.GuidListe}); OnlinehandelDownloadCSVRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { GuidListe = JsonConverters.fromJson(json['GuidListe'],'List',context!); return this; } Map toJson() => { 'GuidListe': JsonConverters.toJson(GuidListe,'List',context!) }; createResponse() => OnlinehandelDownloadCSVResponse(); getResponseTypeName() => "OnlinehandelDownloadCSVResponse"; getTypeName() => "OnlinehandelDownloadCSVRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'ws4.fibudata.net', types: { 'OnlinehandelDownloadCSVResponse': TypeInfo(TypeOf.Class, create:() => OnlinehandelDownloadCSVResponse()), 'Uint8List': TypeInfo(TypeOf.Class, create:() => Uint8List(0)), 'OnlinehandelDownloadCSVRequest': TypeInfo(TypeOf.Class, create:() => OnlinehandelDownloadCSVRequest()), });