/* Options: Date: 2026-03-15 23:59:49 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //GlobalNamespace: ConsumerApi //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdateRecentLocationMessage.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ library ConsumerApi; import 'package:servicestack/servicestack.dart'; class UpdateRecentLocationMessage implements IReturnVoid, IConvertible, IPost { int? userId; double? latitude; double? longitude; UpdateRecentLocationMessage({this.userId,this.latitude,this.longitude}); UpdateRecentLocationMessage.fromJson(Map json) { fromMap(json); } fromMap(Map json) { userId = json['userId']; latitude = JsonConverters.toDouble(json['latitude']); longitude = JsonConverters.toDouble(json['longitude']); return this; } Map toJson() => { 'userId': userId, 'latitude': latitude, 'longitude': longitude }; createResponse() {} getTypeName() => "UpdateRecentLocationMessage"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'ConsumerApi', types: { 'UpdateRecentLocationMessage': TypeInfo(TypeOf.Class, create:() => UpdateRecentLocationMessage()), });