/* Options: Date: 2026-09-21 22:53:00 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SensorCurrentImage.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/SensorCurrentImage/{SensorID}/{Width}/{Height}/{Scale}") class SensorCurrentImage implements IConvertible, IPost { /** * Sensor ID */ // @ApiMember(Description="Sensor ID", IsRequired=true) String? SensorID; int? Width; int? Height; double? Scale; SensorCurrentImage({this.SensorID,this.Width,this.Height,this.Scale}); SensorCurrentImage.fromJson(Map json) { fromMap(json); } fromMap(Map json) { SensorID = json['SensorID']; Width = json['Width']; Height = json['Height']; Scale = JsonConverters.toDouble(json['Scale']); return this; } Map toJson() => { 'SensorID': SensorID, 'Width': Width, 'Height': Height, 'Scale': Scale }; getTypeName() => "SensorCurrentImage"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'clouddemo.pickeos.com', types: { 'SensorCurrentImage': TypeInfo(TypeOf.Class, create:() => SensorCurrentImage()), });