/* Options: Date: 2025-10-28 01:12:16 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: StripeWebHook.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; // @Route("/stripe/webhook/{PublicAccessGuid}", "POST") class StripeWebHook implements IConvertible, IPost { Uint8List? RequestStream; String? PublicAccessGuid; bool? Sandbox; StripeWebHook({this.RequestStream,this.PublicAccessGuid,this.Sandbox}); StripeWebHook.fromJson(Map json) { fromMap(json); } fromMap(Map json) { RequestStream = JsonConverters.fromJson(json['RequestStream'],'Uint8List',context!); PublicAccessGuid = json['PublicAccessGuid']; Sandbox = json['Sandbox']; return this; } Map toJson() => { 'RequestStream': JsonConverters.toJson(RequestStream,'Uint8List',context!), 'PublicAccessGuid': PublicAccessGuid, 'Sandbox': Sandbox }; getTypeName() => "StripeWebHook"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'StripeWebHook': TypeInfo(TypeOf.Class, create:() => StripeWebHook()), 'Uint8List': TypeInfo(TypeOf.Class, create:() => Uint8List(0)), });