/* Options: Date: 2025-12-06 09:52:58 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sfgboxapi.dev.scadsoftware.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DistributedBoxesMapViewLookup.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/distributed_boxes_map_view", "GET") class DistributedBoxesMapViewLookup implements IReturn>, IConvertible, IGet { int? id; int? tenantsId; int? numberBoxes; double? latitude; double? longitude; String? displayName; bool? isZoneMain; bool? approved; DistributedBoxesMapViewLookup({this.id,this.tenantsId,this.numberBoxes,this.latitude,this.longitude,this.displayName,this.isZoneMain,this.approved}); DistributedBoxesMapViewLookup.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; tenantsId = json['tenantsId']; numberBoxes = json['numberBoxes']; latitude = JsonConverters.toDouble(json['latitude']); longitude = JsonConverters.toDouble(json['longitude']); displayName = json['displayName']; isZoneMain = json['isZoneMain']; approved = json['approved']; return this; } Map toJson() => { 'id': id, 'tenantsId': tenantsId, 'numberBoxes': numberBoxes, 'latitude': latitude, 'longitude': longitude, 'displayName': displayName, 'isZoneMain': isZoneMain, 'approved': approved }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "DistributedBoxesMapViewLookup"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'sfgboxapi.dev.scadsoftware.com', types: { 'DistributedBoxesMapViewLookup': TypeInfo(TypeOf.Class, create:() => DistributedBoxesMapViewLookup()), });