/* Options: Date: 2025-08-05 02:30:48 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: GetGoalNextPageValidation.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class PageValidation implements IConvertible { bool? IsValid; PageValidation({this.IsValid}); PageValidation.fromJson(Map json) { fromMap(json); } fromMap(Map json) { IsValid = json['IsValid']; return this; } Map toJson() => { 'IsValid': IsValid }; getTypeName() => "PageValidation"; TypeContext? context = _ctx; } class GoalNexPageValidation extends PageValidation implements IConvertible { GoalNexPageValidation(); GoalNexPageValidation.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); getTypeName() => "GoalNexPageValidation"; TypeContext? context = _ctx; } // @Route("/ab-testing/is-valid", "GET") class GetPageValidation implements IReturn, IConvertible, IGet { String? Id; String? Culture; GetPageValidation({this.Id,this.Culture}); GetPageValidation.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; Culture = json['Culture']; return this; } Map toJson() => { 'Id': Id, 'Culture': Culture }; createResponse() => PageValidation(); getResponseTypeName() => "PageValidation"; getTypeName() => "GetPageValidation"; TypeContext? context = _ctx; } // @Route("/ab-testing/is-valid-goal-page", "GET") class GetGoalNextPageValidation extends GetPageValidation implements IReturn, IConvertible, IGet { GetGoalNextPageValidation(); GetGoalNextPageValidation.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); createResponse() => GoalNexPageValidation(); getResponseTypeName() => "GoalNexPageValidation"; getTypeName() => "GetGoalNextPageValidation"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'PageValidation': TypeInfo(TypeOf.Class, create:() => PageValidation()), 'GoalNexPageValidation': TypeInfo(TypeOf.Class, create:() => GoalNexPageValidation()), 'GetPageValidation': TypeInfo(TypeOf.Class, create:() => GetPageValidation()), 'GetGoalNextPageValidation': TypeInfo(TypeOf.Class, create:() => GetGoalNextPageValidation()), });