Class GHIssueEvent

java.lang.Object
org.kohsuke.github.GHIssueEvent

public class GHIssueEvent extends Object
The type GHIssueEvent.
Author:
Martin van Zijl
See Also:
  • Constructor Details

    • GHIssueEvent

      public GHIssueEvent()
  • Method Details

    • getId

      public long getId()
      Gets id.
      Returns:
      the id
    • getNodeId

      public String getNodeId()
      Gets node id.
      Returns:
      the node id
    • getUrl

      public String getUrl()
      Gets url.
      Returns:
      the url
    • getActor

      public GHUser getActor()
      Gets actor.
      Returns:
      the actor
    • getEvent

      public String getEvent()
      Gets event.
      Returns:
      the event
    • getCommitId

      public String getCommitId()
      Gets commit id.
      Returns:
      the commit id
    • getCommitUrl

      public String getCommitUrl()
      Gets commit url.
      Returns:
      the commit url
    • getCreatedAt

      public Date getCreatedAt()
      Gets created at.
      Returns:
      the created at
    • getIssue

      public GHIssue getIssue()
      Gets issue.
      Returns:
      the issue
    • getMilestone

      public GHMilestone getMilestone()
      Get the GHMilestone that this issue was added to or removed from. Only present for events "milestoned" and "demilestoned", null otherwise.
      Returns:
      the milestone
    • getLabel

      public GHLabel getLabel()
      Get the GHLabel that was added to or removed from the issue. Only present for events "labeled" and "unlabeled", null otherwise.
      Returns:
      the label
    • getAssignee

      public GHUser getAssignee()
      Get the GHUser that was assigned or unassigned from the issue. Only present for events "assigned" and "unassigned", null otherwise.
      Returns:
      the user
    • getRename

      public GHIssueRename getRename()
      Get the GHIssueRename that contains information about issue old and new name. Only present for event "renamed", null otherwise.
      Returns:
      the GHIssueRename
    • getReviewRequester

      public GHUser getReviewRequester()
      Get the GHUser person who requested a review. Only present for events "review_requested", "review_request_removed", null otherwise.
      Returns:
      the GHUser
      See Also:
    • getRequestedReviewer

      public GHUser getRequestedReviewer()
      Get the GHUser person requested to review the pull request. Only present for events "review_requested", "review_request_removed", null otherwise.
      Returns:
      the GHUser
      See Also:
    • toString

      public String toString()
      To string.
      Overrides:
      toString in class Object
      Returns:
      the string
    • getRoot

      @Deprecated public GitHub getRoot()
      Deprecated.
      For access to the GitHub instance, use a local copy instead of pulling it out of objects.
      Get the root GitHub instance for this object.
      Returns:
      the root GitHub instance