/* Options: Date: 2026-03-31 19:59:39 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-do-services.klokgroep.nl/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetReportBytes.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/report/preview/{ReportID}") class GetReportBytes implements IReturn, IConvertible, IGet { int? ReportID; String? ReportName; GetReportBytes({this.ReportID,this.ReportName}); GetReportBytes.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ReportID = json['ReportID']; ReportName = json['ReportName']; return this; } Map toJson() => { 'ReportID': ReportID, 'ReportName': ReportName }; createResponse() => Uint8List(0); getResponseTypeName() => "Uint8List"; getTypeName() => "GetReportBytes"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'test_do_services.klokgroep.nl', types: { 'GetReportBytes': TypeInfo(TypeOf.Class, create:() => GetReportBytes()), });