/* Options: Date: 2025-10-28 04:14:12 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: TestStripeOnceOff.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; // @Route("/test/stripe/onceoff") class TestStripeOnceOff implements IConvertible, IPost { bool? Sandbox; String? WebhookEndpoint; int? Id; TestStripeOnceOff({this.Sandbox,this.WebhookEndpoint,this.Id}); TestStripeOnceOff.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Sandbox = json['Sandbox']; WebhookEndpoint = json['WebhookEndpoint']; Id = json['Id']; return this; } Map toJson() => { 'Sandbox': Sandbox, 'WebhookEndpoint': WebhookEndpoint, 'Id': Id }; getTypeName() => "TestStripeOnceOff"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'TestStripeOnceOff': TypeInfo(TypeOf.Class, create:() => TestStripeOnceOff()), });