Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
* MEEP Controller REST API
*
* MEEP Controller REST API
*
* API version: 1.0.0
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package model
// Operator domain object
type Domain struct {
// Unique domain ID
Id string `json:"id,omitempty"`
// Domain name
Name string `json:"name,omitempty"`
// Domain type
Type_ string `json:"type,omitempty"`
// Latency in ms between zones within domain
InterZoneLatency int32 `json:"interZoneLatency,omitempty"`
// Latency variation in ms between zones within domain
InterZoneLatencyVariation int32 `json:"interZoneLatencyVariation,omitempty"`
// The limit of the traffic supported between zones within the domain
InterZoneThroughput int32 `json:"interZoneThroughput,omitempty"`
// Packet lost (in terms of percentage) between zones within the domain
InterZonePacketLoss float64 `json:"interZonePacketLoss,omitempty"`
Zones []Zone `json:"zones,omitempty"`
}