2018-04-26 07:37:59 +00:00
|
|
|
package sensorconfig
|
2018-04-12 09:38:04 +00:00
|
|
|
|
|
|
|
import "encoding/json"
|
|
|
|
|
|
|
|
type Connection struct {
|
|
|
|
IP string `json:"ip,omitempty"`
|
|
|
|
Port json.Number `json:"port,Number,omitempty"`
|
|
|
|
PortType string `json:"portType,omitempty"`
|
|
|
|
SSL bool `json:"ssl,omitempty"`
|
|
|
|
}
|