mirror of
https://github.com/interviewstreet/go-jira.git
synced 2025-07-03 00:27:05 +02:00
using strings instead of bools
This commit is contained in:
6
issue.go
6
issue.go
@ -31,9 +31,9 @@ type IssueService struct {
|
|||||||
|
|
||||||
// UpdateQueryOptions specifies the optional parameters to the Edit issue
|
// UpdateQueryOptions specifies the optional parameters to the Edit issue
|
||||||
type UpdateQueryOptions struct {
|
type UpdateQueryOptions struct {
|
||||||
NotifyUsers bool `url:"notifyUsers,omitempty"`
|
NotifyUsers string `url:"notifyUsers,omitempty"`
|
||||||
OverrideScreenSecurity bool `url:"overrideScreenSecurity,omitempty"`
|
OverrideScreenSecurity string `url:"overrideScreenSecurity,omitempty"`
|
||||||
OverrideEditableFlag bool `url:"overrideEditableFlag,omitempty"`
|
OverrideEditableFlag string `url:"overrideEditableFlag,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Issue represents a JIRA issue.
|
// Issue represents a JIRA issue.
|
||||||
|
Reference in New Issue
Block a user