commons-go/model/sensorconfig/SensorConfigConnection.go

13 lines
431 B
Go
Raw Normal View History

2018-07-02 07:42:40 +00:00
package sensorconfig
import "encoding/json"
type SensorConfigConnection struct {
MetaIPTypeKey string `json:"metaIPTypeKey,omitempty"`
IP string `json:"metaCrawlerKey,omitempty"`
MetaPortTypeKey string `json:"metaPortTypeKey,omitempty"`
Port json.Number `json:"port,omitempty"`
MetaCryptoTypeKey string `json:"metaCryptoTypeKey,omitempty"`
2018-07-02 07:44:08 +00:00
Credentials map[string]string `json:"credentials,omitempty"`
2018-07-02 07:42:40 +00:00
}