/* Options: Date: 2025-10-28 00:55:59 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: TestPayFastSubscription.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; // @Route("/test/payfast/subscription") class TestPayFastSubscription implements IConvertible, IPost { bool? Sandbox; String? WebhookEndpoint; int? Id; TestPayFastSubscription({this.Sandbox,this.WebhookEndpoint,this.Id}); TestPayFastSubscription.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() => "TestPayFastSubscription"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'TestPayFastSubscription': TypeInfo(TypeOf.Class, create:() => TestPayFastSubscription()), });