17 lines
455 B
Go
Raw Normal View History

2018-04-26 16:37:59 +09:00
package discovery
2018-04-12 18:38:04 +09:00
2018-06-12 22:13:22 +09:00
import (
"git.loafle.net/overflow/commons-go/core/util"
"git.loafle.net/overflow/commons-go/model/meta"
)
2018-04-12 18:38:04 +09:00
type Service struct {
2018-06-20 21:05:25 +09:00
MetaCryptoType *meta.MetaCryptoType `json:"metaCryptoType,omitempty"`
2018-06-21 19:28:20 +09:00
Key string `json:"key,omitempty"`
Description string `json:"description,omitempty"`
2018-04-12 18:38:04 +09:00
2018-06-12 22:13:22 +09:00
Port *Port `json:"port,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
}