/* Options: Date: 2025-06-07 19:34:22 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: ProcesarPlanoIDRQ.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class ProcesarPlanoRS implements IConvertible { bool? Success; String? Error; ProcesarPlanoRS({this.Success,this.Error}); ProcesarPlanoRS.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Success = json['Success']; Error = json['Error']; return this; } Map toJson() => { 'Success': Success, 'Error': Error }; getTypeName() => "ProcesarPlanoRS"; TypeContext? context = _ctx; } // @Route("/Utilidades/Archivos/ProcesarPlanoID") class ProcesarPlanoIDRQ implements IReturn, IConvertible, IPost { int? IDPlano; int? IDCarga; String? Estado; ProcesarPlanoIDRQ({this.IDPlano,this.IDCarga,this.Estado}); ProcesarPlanoIDRQ.fromJson(Map json) { fromMap(json); } fromMap(Map json) { IDPlano = json['IDPlano']; IDCarga = json['IDCarga']; Estado = json['Estado']; return this; } Map toJson() => { 'IDPlano': IDPlano, 'IDCarga': IDCarga, 'Estado': Estado }; createResponse() => ProcesarPlanoRS(); getResponseTypeName() => "ProcesarPlanoRS"; getTypeName() => "ProcesarPlanoIDRQ"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'soluser_recaudo.sgsas.co', types: { 'ProcesarPlanoRS': TypeInfo(TypeOf.Class, create:() => ProcesarPlanoRS()), 'ProcesarPlanoIDRQ': TypeInfo(TypeOf.Class, create:() => ProcesarPlanoIDRQ()), });