types.go
changeset 131 68ef6504637e
parent 130 c450bb73f59a
child 133 0085bcfc1131
--- a/types.go	Mon Apr 17 10:28:10 2017 +0200
+++ b/types.go	Mon Apr 17 12:07:44 2017 +0200
@@ -13,13 +13,13 @@
 
 // Client contains data for a gondole client application
 type Client struct {
-	Name        string
-	ID          string
-	Secret      string
-	APIBase     string
-	InstanceURL string
+	Name        string // Name of the client
+	ID          string // Application ID
+	Secret      string // Application secret
+	APIBase     string // API prefix URL
+	InstanceURL string // Instance base URL
 
-	UserToken *UserToken
+	UserToken *UserToken // User token
 }
 
 /*