commons-go/model/sensorconfig/SensorConfigConnection.go
insanity 54725b74e1 re
2018-07-02 16:44:08 +09:00

13 lines
431 B
Go

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"`
Credentials map[string]string `json:"credentials,omitempty"`
}