Package org.kohsuke.github
Class GHPullRequestChanges
- java.lang.Object
-
- org.kohsuke.github.GHPullRequestChanges
-
public class GHPullRequestChanges extends Object
Wrapper to define changed fields on pull_request action="edited"- See Also:
GHEventPayload.PullRequest
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classGHPullRequestChanges.GHCommitPointerstatic classGHPullRequestChanges.GHFromWrapper for changed values.
-
Constructor Summary
Constructors Constructor Description GHPullRequestChanges()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GHPullRequestChanges.GHCommitPointergetBase()Old target branch for pull request.GHPullRequestChanges.GHFromgetBody()Old pull request body.GHPullRequestChanges.GHFromgetTitle()Old pull request title.
-
-
-
Method Detail
-
getBase
public GHPullRequestChanges.GHCommitPointer getBase()
Old target branch for pull request.- Returns:
- old target branch info (or null if not changed)
-
getTitle
public GHPullRequestChanges.GHFrom getTitle()
Old pull request title.- Returns:
- old pull request title (or null if not changed)
-
getBody
public GHPullRequestChanges.GHFrom getBody()
Old pull request body.- Returns:
- old pull request body (or null if not changed)
-
-