18600: Update comment.
[arvados.git] / sdk / go / arvados / group.go
index 26bd6e1874a6ac592c3bdfc5ef010cee199db1ac..d5243dc170708afac1e51556adbf145c900c4f43 100644 (file)
@@ -30,10 +30,20 @@ type Group struct {
 
 // GroupList is an arvados#groupList resource.
 type GroupList struct {
-       Items          []Group `json:"items"`
-       ItemsAvailable int     `json:"items_available"`
-       Offset         int     `json:"offset"`
-       Limit          int     `json:"limit"`
+       Items          []Group       `json:"items"`
+       ItemsAvailable int           `json:"items_available"`
+       Offset         int           `json:"offset"`
+       Limit          int           `json:"limit"`
+       Included       []interface{} `json:"included"`
+}
+
+// ObjectList is an arvados#objectList resource.
+type ObjectList struct {
+       Included       []interface{} `json:"included"`
+       Items          []interface{} `json:"items"`
+       ItemsAvailable int           `json:"items_available"`
+       Offset         int           `json:"offset"`
+       Limit          int           `json:"limit"`
 }
 
 func (g Group) resourceName() string {