/* Options: Date: 2025-12-06 08:41:45 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: ReportManagerQueriesRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; abstract class ReportManagerRequest { ReportManagerRequest(); ReportManagerRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; getTypeName() => "ReportManagerRequest<$T>"; TypeContext? context = _ctx; } abstract class IReportManagerDocument { } 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", "GET,OPTIONS") class ReportManagerQueriesRequest extends ReportManagerRequest implements IReturn>, IConvertible, IGet { ReportManagerQueriesRequest(); ReportManagerQueriesRequest.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "ReportManagerQueriesRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'ReportManagerRequest': TypeInfo(TypeOf.GenericDef,create:() => ReportManagerRequest()), 'IReportManagerDocument': TypeInfo(TypeOf.Interface), 'ReportManagerQuery': TypeInfo(TypeOf.Class, create:() => ReportManagerQuery()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'ReportManagerQueriesRequest': TypeInfo(TypeOf.Class, create:() => ReportManagerQueriesRequest()), });