/* Options: Date: 2025-12-06 06:10:47 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ReportManagerQueryDeleteRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; abstract class IReportManagerDocument { } abstract class ReportManagerDeleteRequest { int? id; ReportManagerDeleteRequest({this.id}); ReportManagerDeleteRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; return this; } Map toJson() => { 'id': id }; getTypeName() => "ReportManagerDeleteRequest<$T>"; TypeContext? context = _ctx; } class ReportManagerQuery implements IReportManagerDocument, IConvertible { int? id; String? text; String? name; ReportManagerQuery({this.id,this.text,this.name}); ReportManagerQuery.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; text = json['text']; name = json['name']; return this; } Map toJson() => { 'id': id, 'text': text, 'name': name }; getTypeName() => "ReportManagerQuery"; TypeContext? context = _ctx; } // @Route("/v1/ReportManager/api/Queries/{id}", "DELETE,OPTIONS") class ReportManagerQueryDeleteRequest extends ReportManagerDeleteRequest implements IConvertible, IDelete { ReportManagerQueryDeleteRequest(); ReportManagerQueryDeleteRequest.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); getTypeName() => "ReportManagerQueryDeleteRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'IReportManagerDocument': TypeInfo(TypeOf.Interface), 'ReportManagerDeleteRequest': TypeInfo(TypeOf.GenericDef,create:() => ReportManagerDeleteRequest()), 'ReportManagerQuery': TypeInfo(TypeOf.Class, create:() => ReportManagerQuery()), 'ReportManagerQueryDeleteRequest': TypeInfo(TypeOf.Class, create:() => ReportManagerQueryDeleteRequest()), });