From 64931d233c2db69be766bbfd7183b2d04424cc09 Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Sun, 23 Jun 2019 19:02:15 -0400 Subject: [PATCH] add Hashtags field to ChangeInfo Reference: https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#change-info. --- changes.go | 1 + 1 file changed, 1 insertion(+) diff --git a/changes.go b/changes.go index 09fd6dd..7c33757 100644 --- a/changes.go +++ b/changes.go @@ -340,6 +340,7 @@ type ChangeInfo struct { Project string `json:"project"` Branch string `json:"branch"` Topic string `json:"topic,omitempty"` + Hashtags []string `json:"hashtags,omitempty"` ChangeID string `json:"change_id"` Subject string `json:"subject"` Status string `json:"status"`