/* Options: Date: 2025-12-06 05:24:40 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: FindLocationMarkers.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/qry/locations/markers") class FindLocationMarkers implements IReturn>, IConvertible, IPost { String? organizationId; String? groupId; FindLocationMarkers({this.organizationId,this.groupId}); FindLocationMarkers.fromJson(Map json) { fromMap(json); } fromMap(Map json) { organizationId = json['organizationId']; groupId = json['groupId']; return this; } Map toJson() => { 'organizationId': organizationId, 'groupId': groupId }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "FindLocationMarkers"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.sbbet.ath.cx', types: { 'List': TypeInfo(TypeOf.Class, create:() => []), 'LocationMarkers': TypeInfo(TypeOf.Class, create:() => LocationMarkers()), 'FindLocationMarkers': TypeInfo(TypeOf.Class, create:() => FindLocationMarkers()), });