Package com.slack.api.model
Class FileComment
- java.lang.Object
-
- com.slack.api.model.FileComment
-
public class FileComment extends Object
https://api.slack.com/methods/files.comments.add
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
FileComment.FileCommentBuilder
-
Constructor Summary
Constructors Constructor Description FileComment()
FileComment(String id, Integer created, Integer timestamp, String user, String comment, String channel, boolean intro)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FileComment.FileCommentBuilder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
String
getChannel()
String
getComment()
Integer
getCreated()
String
getId()
Integer
getTimestamp()
String
getUser()
int
hashCode()
boolean
isIntro()
void
setChannel(String channel)
void
setComment(String comment)
void
setCreated(Integer created)
void
setId(String id)
void
setIntro(boolean intro)
void
setTimestamp(Integer timestamp)
void
setUser(String user)
String
toString()
-
-
-
Method Detail
-
builder
public static FileComment.FileCommentBuilder builder()
-
getId
public String getId()
-
getCreated
public Integer getCreated()
-
getTimestamp
public Integer getTimestamp()
-
getUser
public String getUser()
-
getComment
public String getComment()
-
getChannel
public String getChannel()
-
isIntro
public boolean isIntro()
-
setId
public void setId(String id)
-
setCreated
public void setCreated(Integer created)
-
setTimestamp
public void setTimestamp(Integer timestamp)
-
setUser
public void setUser(String user)
-
setComment
public void setComment(String comment)
-
setChannel
public void setChannel(String channel)
-
setIntro
public void setIntro(boolean intro)
-
canEqual
protected boolean canEqual(Object other)
-
-