/* Options: Date: 2025-05-05 01:03:55 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: DeleteReport.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; /** * Deletes the specified report. Will stop the report if it's being processed */ // @Route("/reports/{reportId}", "DELETE") // @Api(Description="Deletes the specified report. Will stop the report if it's being processed") class DeleteReport implements IReturnVoid, IConvertible, IDelete { String? reportId; DeleteReport({this.reportId}); DeleteReport.fromJson(Map json) { fromMap(json); } fromMap(Map json) { reportId = json['reportId']; return this; } Map toJson() => { 'reportId': reportId }; createResponse() {} getTypeName() => "DeleteReport"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'DeleteReport': TypeInfo(TypeOf.Class, create:() => DeleteReport()), });