/* Options: Date: 2025-05-05 01:03:56 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DownloadReport.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; /** * Get the specified report as a download */ // @Route("/reports/{reportId}.xlsx", "GET") // @Api(Description="Get the specified report as a download") class DownloadReport implements IConvertible, IGet { String? reportId; DownloadReport({this.reportId}); DownloadReport.fromJson(Map json) { fromMap(json); } fromMap(Map json) { reportId = json['reportId']; return this; } Map toJson() => { 'reportId': reportId }; getTypeName() => "DownloadReport"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'DownloadReport': TypeInfo(TypeOf.Class, create:() => DownloadReport()), });