Class FilesCommentsEditRequest
- java.lang.Object
-
- com.slack.api.methods.request.files.comments.FilesCommentsEditRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class FilesCommentsEditRequest extends Object implements SlackApiRequest
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classFilesCommentsEditRequest.FilesCommentsEditRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FilesCommentsEditRequest.FilesCommentsEditRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetComment()Text of the comment to edit.StringgetFile()File containing the comment to edit.StringgetId()The comment to edit.StringgetToken()Authentication token.inthashCode()voidsetComment(String comment)Text of the comment to edit.voidsetFile(String file)File containing the comment to edit.voidsetId(String id)The comment to edit.voidsetToken(String token)Authentication token.StringtoString()
-
-
-
Method Detail
-
builder
public static FilesCommentsEditRequest.FilesCommentsEditRequestBuilder builder()
-
getToken
public String getToken()
Authentication token. Requires scope: `files:write:user`- Specified by:
getTokenin interfaceSlackApiRequest
-
getFile
public String getFile()
File containing the comment to edit.
-
getId
public String getId()
The comment to edit.
-
getComment
public String getComment()
Text of the comment to edit.
-
setToken
public void setToken(String token)
Authentication token. Requires scope: `files:write:user`
-
setFile
public void setFile(String file)
File containing the comment to edit.
-
setId
public void setId(String id)
The comment to edit.
-
setComment
public void setComment(String comment)
Text of the comment to edit.
-
canEqual
protected boolean canEqual(Object other)
-
-