package domain import "time" type IssueCreateRequest struct { Assignee string `json:"assignee"` Assignees []string `json:"assignees"` Body string `json:"body"` Closed bool `json:"closed"` DueDate time.Time `json:"due_date"` Labels []int `json:"labels"` Milestone int `json:"milestone"` Ref string `json:"ref"` Title string `json:"title"` }