We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 295aa65 + 65f5d60 commit f053ac6Copy full SHA for f053ac6
github/payload.go
@@ -3728,7 +3728,19 @@ type PullRequestPayload struct {
3728
} `json:"sender"`
3729
Assignee *Assignee `json:"assignee"`
3730
RequestedReviewer *Assignee `json:"requested_reviewer"`
3731
- Installation struct {
+ RequestedTeam struct {
3732
+ Name string `json:"name"`
3733
+ ID int64 `json:"id"`
3734
+ Slug string `json:"slug"`
3735
+ Description string `json:"description"`
3736
+ Privacy string `json:"privacy"`
3737
+ URL string `json:"url"`
3738
+ HTMLURL string `json:"html_url"`
3739
+ MembersURL string `json:"members_url"`
3740
+ RepositoriesURL string `json:"repositories_url"`
3741
+ Permission string `json:"permission"`
3742
+ } `json:"requested_team"`
3743
+ Installation struct {
3744
ID int64 `json:"id"`
3745
} `json:"installation"`
3746
}
0 commit comments