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:
7
issue.go
7
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 {
|
||||
|
||||
Reference in New Issue
Block a user