Home
last modified time | relevance | path

Searched defs:UpdateIssueOptions (Results 1 – 6 of 6) sorted by relevance

/dports/devel/lab/lab-0.17.2/vendor/github.com/xanzy/go-gitlab/
H A Dissues.go311 type UpdateIssueOptions struct { struct
312 Title *string `url:"title,omitempty" json:"title,omitempty"`
313 Description *string `url:"description,omitempty" json:"description,omitempty"`
314 Confidential *bool `url:"confidential,omitempty" json:"confidential,omitempty"`
315 AssigneeIDs []int `url:"assignee_ids,omitempty" json:"assignee_ids,omitempty"`
316 MilestoneID *int `url:"milestone_id,omitempty" json:"milestone_id,omitempty"`
317 Labels Labels `url:"labels,comma,omitempty" json:"labels,omitempty"`
318 StateEvent *string `url:"state_event,omitempty" json:"state_event,omitempty"`
319 UpdatedAt *time.Time `url:"updated_at,omitempty" json:"updated_at,omitempty"`
320 DueDate *ISOTime `url:"due_date,omitempty" json:"due_date,omitempty"`
[all …]
/dports/sysutils/go-wtf/wtf-0.21.0/vendor/github.com/xanzy/go-gitlab/go-gitlab-0.18.0/
H A Dissues.go311 type UpdateIssueOptions struct { struct
312 Title *string `url:"title,omitempty" json:"title,omitempty"`
313 Description *string `url:"description,omitempty" json:"description,omitempty"`
314 Confidential *bool `url:"confidential,omitempty" json:"confidential,omitempty"`
315 AssigneeIDs []int `url:"assignee_ids,omitempty" json:"assignee_ids,omitempty"`
316 MilestoneID *int `url:"milestone_id,omitempty" json:"milestone_id,omitempty"`
317 Labels Labels `url:"labels,comma,omitempty" json:"labels,omitempty"`
318 StateEvent *string `url:"state_event,omitempty" json:"state_event,omitempty"`
319 UpdatedAt *time.Time `url:"updated_at,omitempty" json:"updated_at,omitempty"`
320 DueDate *ISOTime `url:"due_date,omitempty" json:"due_date,omitempty"`
[all …]
/dports/sysutils/go-wtf/wtf-0.21.0/vendor/github.com/xanzy/go-gitlab/
H A Dissues.go311 type UpdateIssueOptions struct { struct
312 Title *string `url:"title,omitempty" json:"title,omitempty"`
313 Description *string `url:"description,omitempty" json:"description,omitempty"`
314 Confidential *bool `url:"confidential,omitempty" json:"confidential,omitempty"`
315 AssigneeIDs []int `url:"assignee_ids,omitempty" json:"assignee_ids,omitempty"`
316 MilestoneID *int `url:"milestone_id,omitempty" json:"milestone_id,omitempty"`
317 Labels Labels `url:"labels,comma,omitempty" json:"labels,omitempty"`
318 StateEvent *string `url:"state_event,omitempty" json:"state_event,omitempty"`
319 UpdatedAt *time.Time `url:"updated_at,omitempty" json:"updated_at,omitempty"`
320 DueDate *ISOTime `url:"due_date,omitempty" json:"due_date,omitempty"`
[all …]
/dports/deskutils/pet/pet-0.4.0/vendor/github.com/xanzy/go-gitlab/
H A Dissues.go440 type UpdateIssueOptions struct { struct
441 Title *string `url:"title,omitempty" json:"title,omitempty"`
442 Description *string `url:"description,omitempty" json:"description,omitempty"`
443 Confidential *bool `url:"confidential,omitempty" json:"confidential,omitempty"`
444 AssigneeIDs []int `url:"assignee_ids,omitempty" json:"assignee_ids,omitempty"`
446 Labels Labels `url:"labels,comma,omitempty" json:"labels,omitempty"`
449 StateEvent *string `url:"state_event,omitempty" json:"state_event,omitempty"`
450 UpdatedAt *time.Time `url:"updated_at,omitempty" json:"updated_at,omitempty"`
451 DueDate *ISOTime `url:"due_date,omitempty" json:"due_date,omitempty"`
452 Weight *int `url:"weight,omitempty" json:"weight,omitempty"`
[all …]
/dports/www/gitea/gitea-1.16.5/vendor/github.com/xanzy/go-gitlab/
H A Dissues.go440 type UpdateIssueOptions struct { struct
441 Title *string `url:"title,omitempty" json:"title,omitempty"`
442 Description *string `url:"description,omitempty" json:"description,omitempty"`
443 Confidential *bool `url:"confidential,omitempty" json:"confidential,omitempty"`
444 AssigneeIDs *[]int `url:"assignee_ids,omitempty" json:"assignee_ids,omitempty"`
446 Labels *Labels `url:"labels,comma,omitempty" json:"labels,omitempty"`
449 StateEvent *string `url:"state_event,omitempty" json:"state_event,omitempty"`
450 UpdatedAt *time.Time `url:"updated_at,omitempty" json:"updated_at,omitempty"`
451 DueDate *ISOTime `url:"due_date,omitempty" json:"due_date,omitempty"`
452 Weight *int `url:"weight,omitempty" json:"weight,omitempty"`
[all …]
/dports/devel/lab/lab-0.17.2/internal/gitlab/
H A Dgitlab.go381 func IssueUpdate(project string, issueNum int, opts *gitlab.UpdateIssueOptions) (string, error) {