19 lines
470 B
Go
Raw Normal View History

2018-04-26 16:37:59 +09:00
package discovery
2018-04-12 18:38:04 +09:00
import (
"encoding/json"
2018-04-19 17:25:56 +09:00
"git.loafle.net/overflow/commons-go/core/constants"
2018-04-12 18:38:04 +09:00
"git.loafle.net/overflow/commons-go/core/util"
)
type Service struct {
Port *Port `json:"port,omitempty"`
2018-04-19 17:25:56 +09:00
ID json.Number `json:"id,Number,omitempty"`
CryptoType constants.CryptoType `json:"cryptoType,omitempty"`
ServiceName string `json:"serviceName,omitempty"`
2018-04-12 18:38:04 +09:00
2018-05-11 11:24:21 +09:00
DiscoveredDate *util.Timestamp `json:"discoveredDate,omitempty"`
2018-04-12 18:38:04 +09:00
}