/* Options: Date: 2026-09-21 22:50:59 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SensorCurrentImage.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/SensorCurrentImage/{SensorID}/{Width}/{Height}/{Scale}") public static class SensorCurrentImage { /** * Sensor ID */ @ApiMember(Description="Sensor ID", IsRequired=true) public String SensorID = null; public Integer Width = null; public Integer Height = null; public Float Scale = null; public String getSensorID() { return SensorID; } public SensorCurrentImage setSensorID(String value) { this.SensorID = value; return this; } public Integer getWidth() { return Width; } public SensorCurrentImage setWidth(Integer value) { this.Width = value; return this; } public Integer getHeight() { return Height; } public SensorCurrentImage setHeight(Integer value) { this.Height = value; return this; } public Float getScale() { return Scale; } public SensorCurrentImage setScale(Float value) { this.Scale = value; return this; } } }