mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-12 19:29:30 +08:00
12 lines
258 B
Go
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"`
|
|
}
|