/* Options: Date: 2025-06-13 09:17:46 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws.jimsnwa.com //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 { 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: 'ws.jimsnwa.com', types: { 'GruposxVistaRS': TypeInfo(TypeOf.Class, create:() => GruposxVistaRS()), 'List>': TypeInfo(TypeOf.Class, create:() => >[]), 'Map': TypeInfo(TypeOf.Class, create:() => Map()), 'GruposxVistaRQ': TypeInfo(TypeOf.Class, create:() => GruposxVistaRQ()), });