/* Options: Date: 2025-05-04 23:47:37 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ResendNotificationPublic.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; // @Route("/resend-notification") class ResendNotificationPublic implements IConvertible, IGet { String? notificationId; ResendNotificationPublic({this.notificationId}); ResendNotificationPublic.fromJson(Map json) { fromMap(json); } fromMap(Map json) { notificationId = json['notificationId']; return this; } Map toJson() => { 'notificationId': notificationId }; getTypeName() => "ResendNotificationPublic"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: { 'ResendNotificationPublic': TypeInfo(TypeOf.Class, create:() => ResendNotificationPublic()), });