/* Options: Date: 2025-12-06 05:27:27 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: UpdateLocationIntegrationsData.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class RecordDictionary extends Map implements IConvertible { RecordDictionary(); RecordDictionary.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); getTypeName() => "RecordDictionary<$TKey,$TVal>"; TypeContext? context = _ctx; } // @Route("/cmd/locations/update/integrations-data", "POST") class UpdateLocationIntegrationsData implements IReturn, IConvertible, IPost { String? id; RecordDictionary? integrationsData; UpdateLocationIntegrationsData({this.id,this.integrationsData}); UpdateLocationIntegrationsData.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; integrationsData = JsonConverters.fromJson(json['integrationsData'],'RecordDictionary',context!); return this; } Map toJson() => { 'id': id, 'integrationsData': JsonConverters.toJson(integrationsData,'RecordDictionary',context!) }; createResponse() => ResponseStatus(); getResponseTypeName() => "ResponseStatus"; getTypeName() => "UpdateLocationIntegrationsData"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.sbbet.ath.cx', types: { 'RecordDictionary': TypeInfo(TypeOf.GenericDef,create:() => RecordDictionary()), 'UpdateLocationIntegrationsData': TypeInfo(TypeOf.Class, create:() => UpdateLocationIntegrationsData()), 'RecordDictionary': TypeInfo(TypeOf.Class, create:() => RecordDictionary()), });