/* Options: Date: 2026-09-21 22:51:29 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SensorStopLearning.* //ExcludeTypes: //DefaultImports: */ // @Route("/SensorStopLearning/{SensorID}") export class SensorStopLearning { /** @description Sensor ID */ // @ApiMember(Description="Sensor ID", IsRequired=true) public SensorID: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SensorStopLearning'; } public getMethod() { return 'POST'; } public createResponse() {} }