1
0
mirror of https://github.com/mainflux/mainflux.git synced 2025-05-12 19:29:30 +08:00
Manuel Imperiale 237514ee33
NOISSUE - Support multiple types values in opcua-adapter (#973)
Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>
2019-11-28 18:08:43 +01:00

12 lines
258 B
Go

// Copyright (c) Mainflux
// SPDX-License-Identifier: Apache-2.0
package opcua
// Message represent an OPC-UA message
type Message struct {
Namespace string `json:"namespace"`
ID string `json:"id"`
Data interface{} `json:"data"`
}