autogits/bots-common/request_issue.go

21 lines
275 B
Go
Raw Normal View History

2024-08-24 22:03:30 +02:00
package common
type IssueDetail struct {
Id int
Number int
Html_url string
User *User
Title string
Body string
State string
}
type IssueWebhookEvent struct {
Action string
Issue *IssueDetail
Repository *Repository
Sender *User
}