多语言文字
The multi-language literal object allows constructing messages in multiple languages, especially for error or informational messages.
属性
en (string) This property indicates the content of the message in English.
示例
此示例 shows how to construct a multi-language message.
var myMessage = { en: "This is a message", es: "Este es un mensaje", pt: "Esta é uma mensagem" };es (string) This property indicates the content of the message in Spanish.
示例
此示例 shows how to construct a multi-language message.
var myMessage = { en: "This is a message", es: "Este es un mensaje", pt: "Esta é uma mensagem" };pt (string) This property indicates the content of the message in Portuguese.
示例
此示例 shows how to construct a multi-language message.
var myMessage = { en: "This is a message", es: "Este es un mensaje", pt: "Esta é uma mensagem" };命令
The command object represents a command to be sent to a device or endpoint. This object is normally received as a parameter in the buildDownlink method as part of a...
端点 range
The endpoint range object allows indicating an acceptable range of values for an endpoint. 属性 lowestValue (double) The lowestValue property indicates the...