/* Options: Date: 2025-06-27 00:44:14 Version: 8.61 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://prod-api-agency-orch-mb-dhc.rapp-customers.co.uk //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FeatureFlagStatusRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class FeatureFlagStatusBase implements IConvertible { bool? AgencyEnabled; bool? OrdersEnabled; FeatureFlagStatusBase({this.AgencyEnabled,this.OrdersEnabled}); FeatureFlagStatusBase.fromJson(Map json) { fromMap(json); } fromMap(Map json) { AgencyEnabled = json['AgencyEnabled']; OrdersEnabled = json['OrdersEnabled']; return this; } Map toJson() => { 'AgencyEnabled': AgencyEnabled, 'OrdersEnabled': OrdersEnabled }; getTypeName() => "FeatureFlagStatusBase"; TypeContext? context = _ctx; } class FeatureFlagStatusResponse extends FeatureFlagStatusBase implements IConvertible { FeatureFlagStatusResponse(); FeatureFlagStatusResponse.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); getTypeName() => "FeatureFlagStatusResponse"; TypeContext? context = _ctx; } // @Route("/v1/FeatureFlag", "GET") class FeatureFlagStatusRequest implements IReturn, IGet, IConvertible { FeatureFlagStatusRequest(); FeatureFlagStatusRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => FeatureFlagStatusResponse(); getResponseTypeName() => "FeatureFlagStatusResponse"; getTypeName() => "FeatureFlagStatusRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'prod_api_agency_orch_mb_dhc.rapp_customers.co.uk', types: { 'FeatureFlagStatusBase': TypeInfo(TypeOf.Class, create:() => FeatureFlagStatusBase()), 'FeatureFlagStatusResponse': TypeInfo(TypeOf.Class, create:() => FeatureFlagStatusResponse()), 'FeatureFlagStatusRequest': TypeInfo(TypeOf.Class, create:() => FeatureFlagStatusRequest()), });