mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-02 22:17:10 +08:00
12 lines
246 B
Go
12 lines
246 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 float64 `json:"data"`
|
||
|
}
|