Skip to content

Commit

Permalink
Added property "StartedAfter" to GetWorklogsQueryOptions struct accor… (
Browse files Browse the repository at this point in the history
#344)

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

* Format issue.go
  • Loading branch information
manuelbcd committed Feb 9, 2021
1 parent 437128a commit 5806b81
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions issue.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 5806b81

Please sign in to comment.