oma-json
Version:
JSON schemas description from LwM2M [Open Mobile Alliance](http://www.openmobilealliance.org/wp/OMNA/LwM2M/LwM2MRegistry.html)
29 lines (27 loc) • 849 B
text/typescript
/* tslint:disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
/**
* used with a dimmer or level control to report the state of the control.
*/
export interface LevelControl {
/**
* Input/output level control, float value between 0 and 100 as a percentage.
*/
"5548"?: number;
/**
* The application type of the sensor or actuator as a string, for instance, “Air Pressure”.
*/
"5750"?: string;
/**
* The time in seconds that the device has been on. Writing a value of 0 resets the counter.
*/
"5852"?: number;
/**
* The time in seconds since the Off command was sent. Writing a value of 0 resets the counter.
*/
"5854"?: number;
}