/* Options: Date: 2025-12-06 05:24:26 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.sbbet.ath.cx //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FindHeartbeats.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/qry/heartbeats") // @Route("/qry/heartbeats/{Ids}") class FindHeartbeats implements IReturn>, IConvertible, IPost { String? ids; FindHeartbeats({this.ids}); FindHeartbeats.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ids = json['ids']; return this; } Map toJson() => { 'ids': ids }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "FindHeartbeats"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.sbbet.ath.cx', types: { 'List': TypeInfo(TypeOf.Class, create:() => []), 'Heartbeat': TypeInfo(TypeOf.Class, create:() => Heartbeat()), 'FindHeartbeats': TypeInfo(TypeOf.Class, create:() => FindHeartbeats()), });