summaryrefslogtreecommitdiff
path: root/nexus/types/realm
diff options
context:
space:
mode:
Diffstat (limited to 'nexus/types/realm')
-rw-r--r--nexus/types/realm/response.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/nexus/types/realm/response.go b/nexus/types/realm/response.go
new file mode 100644
index 0000000..e477bda
--- /dev/null
+++ b/nexus/types/realm/response.go
@@ -0,0 +1,10 @@
+package realm
+
+import "github.com/google/uuid"
+
+type Response struct {
+ ID uuid.UUID `json:"id"`
+ Name string `json:"name"`
+ Region string `json:"region"`
+ IsOnline bool `json:"is_online"`
+}