Class FilesRemoteListRequest
- java.lang.Object
-
- com.slack.api.methods.request.files.remote.FilesRemoteListRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class FilesRemoteListRequest extends Object implements SlackApiRequest
https://api.slack.com/methods/files.remote.list
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classFilesRemoteListRequest.FilesRemoteListRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FilesRemoteListRequest.FilesRemoteListRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetChannel()Filter files appearing in a specific channel, indicated by its ID.StringgetCursor()Paginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous request's response_metadata.IntegergetLimit()The maximum number of items to return.StringgetToken()Authentication token.StringgetTsFrom()Filter files created after this timestamp (inclusive).StringgetTsTo()Filter files created before this timestamp (inclusive).inthashCode()voidsetChannel(String channel)Filter files appearing in a specific channel, indicated by its ID.voidsetCursor(String cursor)Paginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous request's response_metadata.voidsetLimit(Integer limit)The maximum number of items to return.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).StringtoString()
-
-
-
Method Detail
-
builder
public static FilesRemoteListRequest.FilesRemoteListRequestBuilder builder()
-
getToken
public String getToken()
Authentication token. Requires scope: `remote_files:read`- Specified by:
getTokenin interfaceSlackApiRequest
-
getChannel
public String getChannel()
Filter files appearing in a specific channel, indicated by its ID.
-
getCursor
public String getCursor()
Paginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous request's response_metadata. Default value fetches the first "page" of the collection. See pagination for more detail.
-
getLimit
public Integer getLimit()
The maximum number of items to return.
-
getTsFrom
public String getTsFrom()
Filter files created after this timestamp (inclusive).
-
getTsTo
public String getTsTo()
Filter files created before this timestamp (inclusive).
-
setToken
public void setToken(String token)
Authentication token. Requires scope: `remote_files:read`
-
setChannel
public void setChannel(String channel)
Filter files appearing in a specific channel, indicated by its ID.
-
setCursor
public void setCursor(String cursor)
Paginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous request's response_metadata. Default value fetches the first "page" of the collection. See pagination for more detail.
-
setLimit
public void setLimit(Integer limit)
The maximum number of items to return.
-
setTsFrom
public void setTsFrom(String tsFrom)
Filter files created after this timestamp (inclusive).
-
setTsTo
public void setTsTo(String tsTo)
Filter files created before this timestamp (inclusive).
-
canEqual
protected boolean canEqual(Object other)
-
-