/* Options: Date: 2025-11-08 11:02:07 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w2.api.bettor.cc //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FindRoundResults.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/qry/rounds/results") class FindRoundResults implements IReturn>, IConvertible, IPost { String? roundId; String? filter; FindRoundResults({this.roundId,this.filter}); FindRoundResults.fromJson(Map json) { fromMap(json); } fromMap(Map json) { roundId = json['roundId']; filter = json['filter']; return this; } Map toJson() => { 'roundId': roundId, 'filter': filter }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "FindRoundResults"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 's4w2.api.bettor.cc', types: { 'List': TypeInfo(TypeOf.Class, create:() => []), 'RoundResults': TypeInfo(TypeOf.Class, create:() => RoundResults()), 'FindRoundResults': TypeInfo(TypeOf.Class, create:() => FindRoundResults()), });