Class FilesListRequest
- All Implemented Interfaces:
SlackApiRequest
public class FilesListRequest extends Object implements SlackApiRequest
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classFilesListRequest.FilesListRequestBuilder -
Method Summary
Modifier and Type Method Description static FilesListRequest.FilesListRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetChannel()Filter files appearing in a specific channel, indicated by its ID.IntegergetCount()IntegergetPage()StringgetTeamId()Required for org-wide apps.StringgetToken()Authentication token.StringgetTsFrom()Filter files created after this timestamp (inclusive).StringgetTsTo()Filter files created before this timestamp (inclusive).List<String>getTypes()Filter files by type:\n\n* `all` - All filesStringgetUser()Filter files created by a single user.inthashCode()booleanisShowFilesHiddenByLimit()https://api.slack.com/changelog/2019-03-wild-west-for-files-no-morevoidsetChannel(String channel)Filter files appearing in a specific channel, indicated by its ID.voidsetCount(Integer count)voidsetPage(Integer page)voidsetShowFilesHiddenByLimit(boolean showFilesHiddenByLimit)https://api.slack.com/changelog/2019-03-wild-west-for-files-no-morevoidsetTeamId(String teamId)Required for org-wide apps.voidsetToken(String token)Authentication token.voidsetTsFrom(String tsFrom)Filter files created after this timestamp (inclusive).voidsetTsTo(String tsTo)Filter files created before this timestamp (inclusive).voidsetTypes(List<String> types)Filter files by type:\n\n* `all` - All filesvoidsetUser(String user)Filter files created by a single user.StringtoString()
-
Method Details
-
builder
-
getToken
Authentication token. Requires scope: `files:read`- Specified by:
getTokenin interfaceSlackApiRequest
-
getUser
Filter files created by a single user. -
getChannel
Filter files appearing in a specific channel, indicated by its ID. -
getTsFrom
Filter files created after this timestamp (inclusive). -
getTsTo
Filter files created before this timestamp (inclusive). -
getTypes
Filter files by type:\n\n* `all` - All files`spaces` - Posts\n* `snippets` - Snippets `images` - Image files `gdocs` - Google docs `zips` - Zip files `pdfs` - PDF files
You can pass multiple values in the types argument, like `types=spaces,snippets`. The default value is `all`, which does not filter the list.
-
getCount
-
getPage
-
isShowFilesHiddenByLimit
public boolean isShowFilesHiddenByLimit()https://api.slack.com/changelog/2019-03-wild-west-for-files-no-moreIn order to gather information on tombstoned files in Free workspaces, so that you can delete or revoke them, pass the show_files_hidden_by_limit parameter. While the yielded files will still be redacted, you'll gain the id of the files so that you can delete or revoke them.
-
getTeamId
Required for org-wide apps. -
setToken
Authentication token. Requires scope: `files:read` -
setUser
Filter files created by a single user. -
setChannel
Filter files appearing in a specific channel, indicated by its ID. -
setTsFrom
Filter files created after this timestamp (inclusive). -
setTsTo
Filter files created before this timestamp (inclusive). -
setTypes
Filter files by type:\n\n* `all` - All files`spaces` - Posts\n* `snippets` - Snippets `images` - Image files `gdocs` - Google docs `zips` - Zip files `pdfs` - PDF files
You can pass multiple values in the types argument, like `types=spaces,snippets`. The default value is `all`, which does not filter the list.
-
setCount
-
setPage
-
setShowFilesHiddenByLimit
public void setShowFilesHiddenByLimit(boolean showFilesHiddenByLimit)https://api.slack.com/changelog/2019-03-wild-west-for-files-no-moreIn order to gather information on tombstoned files in Free workspaces, so that you can delete or revoke them, pass the show_files_hidden_by_limit parameter. While the yielded files will still be redacted, you'll gain the id of the files so that you can delete or revoke them.
-
setTeamId
Required for org-wide apps. -
equals
-
canEqual
-
hashCode
public int hashCode() -
toString
-