Class FilesUploadRequest
java.lang.Object
com.slack.api.methods.request.files.FilesUploadRequest
- All Implemented Interfaces:
SlackApiRequest
public class FilesUploadRequest extends Object implements SlackApiRequest
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classFilesUploadRequest.FilesUploadRequestBuilder -
Method Summary
Modifier and Type Method Description static FilesUploadRequest.FilesUploadRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)List<String>getChannels()Comma-separated list of channel names or IDs where the file will be shared.StringgetContent()File contents via a POST variable.FilegetFile()File contents via `multipart/form-data`.byte[]getFileData()StringgetFilename()Filename of file.StringgetFiletype()A [file type](/types/file#file_types) identifier.StringgetInitialComment()Initial comment to add to file.StringgetThreadTs()Provide another message's ts value to upload this file as a reply.StringgetTitle()Title of file.StringgetToken()Authentication token.inthashCode()voidsetChannels(List<String> channels)Comma-separated list of channel names or IDs where the file will be shared.voidsetContent(String content)File contents via a POST variable.voidsetFile(File file)File contents via `multipart/form-data`.voidsetFileData(byte[] fileData)voidsetFilename(String filename)Filename of file.voidsetFiletype(String filetype)A [file type](/types/file#file_types) identifier.voidsetInitialComment(String initialComment)Initial comment to add to file.voidsetThreadTs(String threadTs)Provide another message's ts value to upload this file as a reply.voidsetTitle(String title)Title of file.voidsetToken(String token)Authentication token.StringtoString()
-
Method Details
-
builder
-
getToken
Authentication token. Requires scope: `files:write:user`- Specified by:
getTokenin interfaceSlackApiRequest
-
getFile
File contents via `multipart/form-data`. If omitting this parameter, you must submit `content`. -
getFileData
public byte[] getFileData() -
getContent
File contents via a POST variable. If omitting this parameter, you must provide a `file`. -
getFiletype
A [file type](/types/file#file_types) identifier. -
getFilename
Filename of file. -
getTitle
Title of file. -
getInitialComment
Initial comment to add to file. -
getChannels
Comma-separated list of channel names or IDs where the file will be shared. -
getThreadTs
Provide another message's ts value to upload this file as a reply. Never use a reply's ts value; use its parent instead. -
setToken
Authentication token. Requires scope: `files:write:user` -
setFile
File contents via `multipart/form-data`. If omitting this parameter, you must submit `content`. -
setFileData
public void setFileData(byte[] fileData) -
setContent
File contents via a POST variable. If omitting this parameter, you must provide a `file`. -
setFiletype
A [file type](/types/file#file_types) identifier. -
setFilename
Filename of file. -
setTitle
Title of file. -
setInitialComment
Initial comment to add to file. -
setChannels
Comma-separated list of channel names or IDs where the file will be shared. -
setThreadTs
Provide another message's ts value to upload this file as a reply. Never use a reply's ts value; use its parent instead. -
equals
-
canEqual
-
hashCode
public int hashCode() -
toString
-