aboutsummaryrefslogtreecommitdiffstats
path: root/lib/xaapiv1/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/xaapiv1/config.go')
-rw-r--r--lib/xaapiv1/config.go22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/xaapiv1/config.go b/lib/xaapiv1/config.go
new file mode 100644
index 0000000..ae853dd
--- /dev/null
+++ b/lib/xaapiv1/config.go
@@ -0,0 +1,22 @@
+package xaapiv1
+
+// APIConfig parameters (json format) of /config command
+type APIConfig struct {
+ Servers []ServerCfg `json:"servers"`
+
+ // Not exposed outside in JSON
+ Version string `json:"-"`
+ APIVersion string `json:"-"`
+ VersionGitTag string `json:"-"`
+}
+
+// ServerCfg .
+type ServerCfg struct {
+ ID string `json:"id"`
+ URL string `json:"url"`
+ APIURL string `json:"apiUrl"`
+ PartialURL string `json:"partialUrl"`
+ ConnRetry int `json:"connRetry"`
+ Connected bool `json:"connected"`
+ Disabled bool `json:"disabled"`
+}