/* Options: Date: 2025-06-07 20:03:27 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: GruposxVistaRQ.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class GruposxVistaRS implements IConvertible { List>? data; String? success; String? error; GruposxVistaRS({this.data,this.success,this.error}); GruposxVistaRS.fromJson(Map json) { fromMap(json); } fromMap(Map json) { data = JsonConverters.fromJson(json['data'],'List>',context!); success = json['success']; error = json['error']; return this; } Map toJson() => { 'data': JsonConverters.toJson(data,'List>',context!), 'success': success, 'error': error }; getTypeName() => "GruposxVistaRS"; TypeContext? context = _ctx; } // @Route("/Utilidades/GruposxVista") class GruposxVistaRQ implements IReturn, IConvertible, IPost { int? idGrupo; GruposxVistaRQ({this.idGrupo}); GruposxVistaRQ.fromJson(Map json) { fromMap(json); } fromMap(Map json) { idGrupo = json['idGrupo']; return this; } Map toJson() => { 'idGrupo': idGrupo }; createResponse() => GruposxVistaRS(); getResponseTypeName() => "GruposxVistaRS"; getTypeName() => "GruposxVistaRQ"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'soluser_recaudo.sgsas.co', types: { 'GruposxVistaRS': TypeInfo(TypeOf.Class, create:() => GruposxVistaRS()), 'List>': TypeInfo(TypeOf.Class, create:() => >[]), 'Map': TypeInfo(TypeOf.Class, create:() => Map()), 'GruposxVistaRQ': TypeInfo(TypeOf.Class, create:() => GruposxVistaRQ()), });