/* Options: Date: 2026-04-04 06:46:43 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteNotification.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; /** * Deletes an existing notification */ // @Route("/notification/{NotificationId}/delete", "PUT") // @Api(Description="Deletes an existing notification") class DeleteNotification implements IReturn, IConvertible, IPut { String? NotificationId; String? NotificationName; DeleteNotification({this.NotificationId,this.NotificationName}); DeleteNotification.fromJson(Map json) { fromMap(json); } fromMap(Map json) { NotificationId = json['NotificationId']; NotificationName = json['NotificationName']; return this; } Map toJson() => { 'NotificationId': NotificationId, 'NotificationName': NotificationName }; createResponse() => ResponseStatus(); getResponseTypeName() => "ResponseStatus"; getTypeName() => "DeleteNotification"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'pfapi.pstpf.com.au', types: { 'DeleteNotification': TypeInfo(TypeOf.Class, create:() => DeleteNotification()), });