summaryrefslogtreecommitdiff
path: root/types
diff options
context:
space:
mode:
Diffstat (limited to 'types')
-rw-r--r--types/server/server.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/types/server/server.go b/types/server/server.go
index 3bdebe1..4198e86 100644
--- a/types/server/server.go
+++ b/types/server/server.go
@@ -125,6 +125,8 @@ type Server struct {
type Institute struct {
// Server is the embedded server struct
Server
+ // SupportContacts are the list of support contacts
+ SupportContacts []string `json:"support_contacts"`
// Delisted is a boolean that indicates whether or not this server is delisted from discovery
// If it is, the UI should show a warning symbol or move the server to a new category, which is up to the client
Delisted bool `json:"delisted"`
@@ -138,6 +140,8 @@ type SecureInternet struct {
CountryCode string `json:"country_code"`
// Locations is the list of available secure internet locations
Locations []string `json:"locations"`
+ // SupportContacts are the list of support contacts
+ SupportContacts []string `json:"support_contacts"`
// Delisted is a boolean that indicates whether or not this server is delisted from discovery
// If it is, the UI should show a warning symbol or move the server to a new category, which is up to the client
Delisted bool `json:"delisted"`