/* Options: Date: 2025-06-07 19:04:30 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://soluser-recaudo.sgsas.co //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UnShareReportRQ.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class UnShareReportRS implements IConvertible { bool? isUnShared; String? error; UnShareReportRS({this.isUnShared,this.error}); UnShareReportRS.fromJson(Map json) { fromMap(json); } fromMap(Map json) { isUnShared = json['isUnShared']; error = json['error']; return this; } Map toJson() => { 'isUnShared': isUnShared, 'error': error }; getTypeName() => "UnShareReportRS"; TypeContext? context = _ctx; } // @Route("/restfiles/UnShareReportRQ") class UnShareReportRQ implements IReturn, IConvertible, IPost { double? reporte; String? usuario; double? sistema; double? empresa; UnShareReportRQ({this.reporte,this.usuario,this.sistema,this.empresa}); UnShareReportRQ.fromJson(Map json) { fromMap(json); } fromMap(Map json) { reporte = JsonConverters.toDouble(json['reporte']); usuario = json['usuario']; sistema = JsonConverters.toDouble(json['sistema']); empresa = JsonConverters.toDouble(json['empresa']); return this; } Map toJson() => { 'reporte': reporte, 'usuario': usuario, 'sistema': sistema, 'empresa': empresa }; createResponse() => UnShareReportRS(); getResponseTypeName() => "UnShareReportRS"; getTypeName() => "UnShareReportRQ"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'soluser_recaudo.sgsas.co', types: { 'UnShareReportRS': TypeInfo(TypeOf.Class, create:() => UnShareReportRS()), 'UnShareReportRQ': TypeInfo(TypeOf.Class, create:() => UnShareReportRQ()), });