/* Options: Date: 2025-06-07 19:24: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: NotificarEmailRQ.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class NotificarEmailRS implements IConvertible { int? estado; NotificarEmailRS({this.estado}); NotificarEmailRS.fromJson(Map json) { fromMap(json); } fromMap(Map json) { estado = json['estado']; return this; } Map toJson() => { 'estado': estado }; getTypeName() => "NotificarEmailRS"; TypeContext? context = _ctx; } // @Route("/Utilidades/Notificar") class NotificarEmailRQ implements IReturn, IConvertible, IPost { String? email; String? asunto; String? body; NotificarEmailRQ({this.email,this.asunto,this.body}); NotificarEmailRQ.fromJson(Map json) { fromMap(json); } fromMap(Map json) { email = json['email']; asunto = json['asunto']; body = json['body']; return this; } Map toJson() => { 'email': email, 'asunto': asunto, 'body': body }; createResponse() => NotificarEmailRS(); getResponseTypeName() => "NotificarEmailRS"; getTypeName() => "NotificarEmailRQ"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'soluser_recaudo.sgsas.co', types: { 'NotificarEmailRS': TypeInfo(TypeOf.Class, create:() => NotificarEmailRS()), 'NotificarEmailRQ': TypeInfo(TypeOf.Class, create:() => NotificarEmailRQ()), });