1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-11-27 22:18:45 +02:00

Added property "StartedAfter" to GetWorklogsQueryOptions struct accor… (#344)

* Added property "StartedAfter" to GetWorklogsQueryOptions struct according to official API documentation

* Format issue.go
This commit is contained in:
manuelbcd
2021-02-09 10:17:23 +01:00
committed by GitHub
parent 437128ac42
commit 5806b81f1c

View File

@@ -535,6 +535,7 @@ type GetQueryOptions struct {
type GetWorklogsQueryOptions struct {
StartAt int64 `url:"startAt,omitempty"`
MaxResults int32 `url:"maxResults,omitempty"`
StartedAfter int64 `url:"startedAfter,omitempty"`
Expand string `url:"expand,omitempty"`
}