Class IssueCommentGroovyObject
- java.lang.Object
-
- groovy.lang.GroovyObjectSupport
-
- org.jenkinsci.plugins.pipeline.github.IssueCommentGroovyObject
-
- All Implemented Interfaces:
groovy.lang.GroovyObject
,Serializable
public class IssueCommentGroovyObject extends groovy.lang.GroovyObjectSupport implements Serializable
Groovy wrapper over aComment
Additionally provides one the ability to update the comment body and delete the comment.- Author:
- Aaron Whiteside
- See Also:
Comment
, Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
delete()
String
getBody()
String
getBodyHtml()
String
getBodyText()
Date
getCreatedAt()
long
getId()
Date
getUpdatedAt()
String
getUrl()
String
getUser()
void
setBody(String body)
-
-
-
Method Detail
-
getCreatedAt
public Date getCreatedAt()
-
getUpdatedAt
public Date getUpdatedAt()
-
getBody
public String getBody()
-
getBodyHtml
public String getBodyHtml()
-
getBodyText
public String getBodyText()
-
getId
public long getId()
-
getUrl
public String getUrl()
-
getUser
public String getUser()
-
setBody
public void setBody(String body)
-
delete
public void delete()
-
-