端点 range
The endpoint range object allows indicating an acceptable range of values for an endpoint.
属性
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 t此处 is no minimum value.
示例
此示例 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 t此处 is no maximum value.
示例
此示例 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 };多语言文字
The multi-language literal object allows constructing messages in multiple languages, especially for error or informational messages. 属性 en (string)...
HttpResponse
The HttpResponse object allows returning data when sending uplink data through HTTP. 属性 statusCode (int) The statusCode property allows indicating...