/* Options: Date: 2025-08-05 02:52:22 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteAllTests.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/ab-testing/tests/all", "DELETE") class DeleteAllTests implements IConvertible, IDelete { bool? SkipSyncToDEC; DeleteAllTests({this.SkipSyncToDEC}); DeleteAllTests.fromJson(Map json) { fromMap(json); } fromMap(Map json) { SkipSyncToDEC = json['SkipSyncToDEC']; return this; } Map toJson() => { 'SkipSyncToDEC': SkipSyncToDEC }; getTypeName() => "DeleteAllTests"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'DeleteAllTests': TypeInfo(TypeOf.Class, create:() => DeleteAllTests()), });