Package org.kohsuke.github
Class GHEventPayload.InstallationRepositories
- java.lang.Object
-
- org.kohsuke.github.GHEventPayload
-
- org.kohsuke.github.GHEventPayload.InstallationRepositories
-
- Enclosing class:
- GHEventPayload
public static class GHEventPayload.InstallationRepositories extends GHEventPayload
A repository has been added or removed from an installation.- See Also:
- authoritative source
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.kohsuke.github.GHEventPayload
GHEventPayload.CheckRun, GHEventPayload.CheckSuite, GHEventPayload.CommitComment, GHEventPayload.Create, GHEventPayload.Delete, GHEventPayload.Deployment, GHEventPayload.DeploymentStatus, GHEventPayload.Fork, GHEventPayload.Installation, GHEventPayload.InstallationRepositories, GHEventPayload.Issue, GHEventPayload.IssueComment, GHEventPayload.Ping, GHEventPayload.Public, GHEventPayload.PullRequest, GHEventPayload.PullRequestReview, GHEventPayload.PullRequestReviewComment, GHEventPayload.Push, GHEventPayload.Release, GHEventPayload.Repository, GHEventPayload.Status
-
-
Field Summary
-
Fields inherited from class org.kohsuke.github.GHEventPayload
root
-
-
Constructor Summary
Constructors Constructor Description InstallationRepositories()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAction()Gets actionGHAppInstallationgetInstallation()Gets installationList<GHRepository>getRepositoriesAdded()Gets repositories addedList<GHRepository>getRepositoriesRemoved()Gets repositories removedStringgetRepositorySelection()Gets installation selection-
Methods inherited from class org.kohsuke.github.GHEventPayload
getSender, setSender
-
-
-
-
Method Detail
-
getAction
public String getAction()
Gets action- Returns:
- the action
-
getInstallation
public GHAppInstallation getInstallation()
Gets installation- Returns:
- the installation
-
getRepositorySelection
public String getRepositorySelection()
Gets installation selection- Returns:
- the installation selection
-
getRepositoriesAdded
public List<GHRepository> getRepositoriesAdded()
Gets repositories added- Returns:
- the repositories
-
getRepositoriesRemoved
public List<GHRepository> getRepositoriesRemoved()
Gets repositories removed- Returns:
- the repositories
-
-