Endpoint range
The endpoint range object allows indicating an acceptable range of values for an endpoint.
Properties
### lowestValue (double) The lowestValue property indicates the minimum acceptable value for the endpoint. If this property is omitted or specified with a null value, it is assumed that there is no minimum value.
Examples
This example shows how to build a range object that has a minimum value of 18 and a maximum of 200.
var myRange = { lowestValue: 18, highestValue: 200 };### highestValue (double) The highestValue property indicates the maximum acceptable value for the endpoint. If this property is omitted or specified with a null value, it is assumed that there is no maximum value.
Examples
This example shows how to build a range object that has a minimum value of 18 and a maximum of 200.
var myRange = { lowestValue: 18, highestValue: 200 };Multi-language literal
The multi-language literal object allows constructing messages in multiple languages, especially for error or informational messages. Properties en (string)...
HttpResponse
The HttpResponse object allows returning data when sending uplink data through HTTP. Properties statusCode (int) The statusCode property allows indicating...