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