From 5806b81f1cc0425e706828ab9968104c3c80a964 Mon Sep 17 00:00:00 2001 From: manuelbcd Date: Tue, 9 Feb 2021 10:17:23 +0100 Subject: [PATCH] =?UTF-8?q?Added=20property=20"StartedAfter"=20to=20GetWor?= =?UTF-8?q?klogsQueryOptions=20struct=20accor=E2=80=A6=20(#344)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Added property "StartedAfter" to GetWorklogsQueryOptions struct according to official API documentation * Format issue.go --- issue.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/issue.go b/issue.go index facd8a8..15b2165 100644 --- a/issue.go +++ b/issue.go @@ -533,9 +533,10 @@ type GetQueryOptions struct { // GetWorklogsQueryOptions specifies the optional parameters for the Get Worklogs method type GetWorklogsQueryOptions struct { - StartAt int64 `url:"startAt,omitempty"` - MaxResults int32 `url:"maxResults,omitempty"` - Expand string `url:"expand,omitempty"` + StartAt int64 `url:"startAt,omitempty"` + MaxResults int32 `url:"maxResults,omitempty"` + StartedAfter int64 `url:"startedAfter,omitempty"` + Expand string `url:"expand,omitempty"` } type AddWorklogQueryOptions struct {