Skip to content

Commit

Permalink
16263: Fix omitempty placement
Browse files Browse the repository at this point in the history
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>
  • Loading branch information
tetron committed Mar 30, 2020
1 parent 9d58af5 commit 2776500
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sdk/go/arvados/api.go
Expand Up @@ -60,11 +60,11 @@ var (
)

type GetOptions struct {
UUID string `json:"uuid",omitempty`
UUID string `json:"uuid,omitempty"`
Select []string `json:"select"`
IncludeTrash bool `json:"include_trash"`
ForwardedFor string `json:"forwarded_for",omitempty`
Remote string `json:"remote",omitempty`
ForwardedFor string `json:"forwarded_for,omitempty"`
Remote string `json:"remote,omitempty"`
}

type UntrashOptions struct {
Expand Down

0 comments on commit 2776500

Please sign in to comment.