Package org.kohsuke.github
Class GHIssueEvent
- java.lang.Object
-
- org.kohsuke.github.GHIssueEvent
-
public class GHIssueEvent extends Object
The type GHIssueEvent.- Author:
- Martin van Zijl
-
-
Constructor Summary
Constructors Constructor Description GHIssueEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GHUsergetActor()Gets actor.StringgetCommitId()Gets commit id.StringgetCommitUrl()Gets commit url.DategetCreatedAt()Gets created at.StringgetEvent()Gets event.longgetId()Gets id.GHIssuegetIssue()Gets issue.StringgetNodeId()Gets node id.GitHubgetRoot()Gets root.StringgetUrl()Gets url.StringtoString()
-
-
-
Method Detail
-
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
-
getRoot
public GitHub getRoot()
Gets root.- Returns:
- the root
-
getIssue
public GHIssue getIssue()
Gets issue.- Returns:
- the issue
-
-