Multi-language literal
The multi-language literal object allows constructing messages in multiple languages, especially for error or informational messages.
Properties
### en (string) This property indicates the content of the message in English.
Examples
This example 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.
Examples
This example 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.
Examples
This example shows how to construct a multi-language message.
var myMessage = { en: "This is a message", es: "Este es un mensaje", pt: "Esta é uma mensagem" };Command
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...
Endpoint range
The endpoint range object allows indicating an acceptable range of values for an endpoint. Properties lowestValue (double) The lowestValue property indicates the...