Package org.kohsuke.github
Class GHRepositoryDiscussion.Category
- java.lang.Object
-
- org.kohsuke.github.GHRepositoryDiscussion.Category
-
- Enclosing class:
- GHRepositoryDiscussion
public static class GHRepositoryDiscussion.Category extends Object
Category of a discussion.Note that while it is relatively close to the GraphQL objects, some of the fields such as the id are handled differently.
- See Also:
- The GraphQL API for Discussions
-
-
Constructor Summary
Constructors Constructor Description Category()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DategetCreatedAt()StringgetDescription()StringgetEmoji()longgetId()StringgetName()StringgetNodeId()longgetRepositoryId()StringgetSlug()DategetUpdatedAt()booleanisAnswerable()
-
-
-
Method Detail
-
getId
public long getId()
-
getNodeId
public String getNodeId()
-
getRepositoryId
public long getRepositoryId()
-
getEmoji
public String getEmoji()
-
getName
public String getName()
-
getDescription
public String getDescription()
-
getCreatedAt
public Date getCreatedAt()
-
getUpdatedAt
public Date getUpdatedAt()
-
getSlug
public String getSlug()
-
isAnswerable
public boolean isAnswerable()
-
-