commons-go/model/infra/InfraZone.go

14 lines
544 B
Go
Raw Normal View History

2018-06-12 09:18:11 +00:00
package infra
import "git.loafle.net/overflow/commons-go/model/meta"
type InfraZone struct {
Infra
2018-06-12 13:13:22 +00:00
MetaTargetZoneType *meta.MetaTargetZoneType `json:"metaTargetZoneType,omitempty"`
MetaIPType *meta.MetaIPType `json:"metaIPType,omitempty"`
Network string `json:"network,omitempty"`
Iface string `json:"iface,omitempty"`
Address string `json:"address,omitempty"`
Mac string `json:"mac,omitempty"`
}