/* Options: Date: 2025-10-28 02:17:47 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: TestFirebaseWrite.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; // @Route("/test/firebase/write") class TestFirebaseWrite implements IConvertible, IPost { String? Collection; String? DocumentPath; String? Document; TestFirebaseWrite({this.Collection,this.DocumentPath,this.Document}); TestFirebaseWrite.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Collection = json['Collection']; DocumentPath = json['DocumentPath']; Document = json['Document']; return this; } Map toJson() => { 'Collection': Collection, 'DocumentPath': DocumentPath, 'Document': Document }; getTypeName() => "TestFirebaseWrite"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'TestFirebaseWrite': TypeInfo(TypeOf.Class, create:() => TestFirebaseWrite()), });