/* Options: Date: 2025-08-05 02:45:57 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: SearchScoringRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class SearchScoringResponse implements IConvertible { List? ScoringSettingsNames; SearchScoringResponse({this.ScoringSettingsNames}); SearchScoringResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ScoringSettingsNames = JsonConverters.fromJson(json['ScoringSettingsNames'],'List',context!); return this; } Map toJson() => { 'ScoringSettingsNames': JsonConverters.toJson(ScoringSettingsNames,'List',context!) }; getTypeName() => "SearchScoringResponse"; TypeContext? context = _ctx; } // @Route("/search/scoring-settings", "GET") class SearchScoringRequest implements IReturn, IConvertible, IGet { String? SearchIndexPipeId; SearchScoringRequest({this.SearchIndexPipeId}); SearchScoringRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { SearchIndexPipeId = json['SearchIndexPipeId']; return this; } Map toJson() => { 'SearchIndexPipeId': SearchIndexPipeId }; createResponse() => SearchScoringResponse(); getResponseTypeName() => "SearchScoringResponse"; getTypeName() => "SearchScoringRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'SearchScoringResponse': TypeInfo(TypeOf.Class, create:() => SearchScoringResponse()), 'SearchScoringRequest': TypeInfo(TypeOf.Class, create:() => SearchScoringRequest()), });