From 7d1970e46ed5dab65e1eaa28b3ddfe609ffe6e4e Mon Sep 17 00:00:00 2001 From: Lucas Di Pentima Date: Fri, 7 Feb 2020 20:40:51 -0300 Subject: [PATCH] 16141: Adds missing collection fields to GoSDK. Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- sdk/go/arvados/collection.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sdk/go/arvados/collection.go b/sdk/go/arvados/collection.go index 5ac35e2292..94390bc019 100644 --- a/sdk/go/arvados/collection.go +++ b/sdk/go/arvados/collection.go @@ -37,6 +37,13 @@ type Collection struct { IsTrashed bool `json:"is_trashed"` Properties map[string]interface{} `json:"properties"` WritableBy []string `json:"writable_by,omitempty"` + FileCount *int `json:"file_count"` + FileSizeTotal *int `json:"file_size_total"` + Version *int `json:"version"` + PreserveVersion bool `json:"preserve_version"` + CurrentVersionUUID string `json:"current_version_uuid"` + Description string `json:"description"` + Href string `json:"href"` } func (c Collection) resourceName() string { -- 2.30.2