X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/8b17f2ab7bcfcad4dcf9e3aa2cc203417053b23e..b9e8e790912565619289540a8dc546a5c9c60f6e:/sdk/go/arvados/group.go diff --git a/sdk/go/arvados/group.go b/sdk/go/arvados/group.go index 5380988153..0782bd43d1 100644 --- a/sdk/go/arvados/group.go +++ b/sdk/go/arvados/group.go @@ -26,18 +26,23 @@ 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. 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"`