19146: Add can_write and can_manage response fields.
[arvados.git] / sdk / go / arvados / group.go
index d5243dc170708afac1e51556adbf145c900c4f43..0782bd43d154f1ada231307f6a85970c61a28b08 100644 (file)
@@ -26,6 +26,9 @@ type Group struct {
        Properties           map[string]interface{} `json:"properties"`
        WritableBy           []string               `json:"writable_by,omitempty"`
        Description          string                 `json:"description"`
+       FrozenByUUID         string                 `json:"frozen_by_uuid"`
+       CanWrite             bool                   `json:"can_write"`
+       CanManage            bool                   `json:"can_manage"`
 }
 
 // GroupList is an arvados#groupList resource.