/* Options: Date: 2025-10-28 00:56:38 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetEmailEventsView.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; // @Route("/report/emailevents/{PublicAccessGuid}") class GetEmailEventsView implements IReturn>, IConvertible, IPost { // @Required() String? PublicAccessGuid; GetEmailEventsView({this.PublicAccessGuid}); GetEmailEventsView.fromJson(Map json) { fromMap(json); } fromMap(Map json) { PublicAccessGuid = json['PublicAccessGuid']; return this; } Map toJson() => { 'PublicAccessGuid': PublicAccessGuid }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "GetEmailEventsView"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'List': TypeInfo(TypeOf.Class, create:() => []), 'ReportsEmailEventsView': TypeInfo(TypeOf.Class, create:() => ReportsEmailEventsView()), 'GetEmailEventsView': TypeInfo(TypeOf.Class, create:() => GetEmailEventsView()), });