Class FilesRemoteListRequest

java.lang.Object
com.slack.api.methods.request.files.remote.FilesRemoteListRequest
All Implemented Interfaces:
SlackApiRequest

public class FilesRemoteListRequest
extends java.lang.Object
implements SlackApiRequest
https://api.slack.com/methods/files.remote.list
  • Nested Class Summary

    Nested Classes 
    Modifier and Type Class Description
    static class  FilesRemoteListRequest.FilesRemoteListRequestBuilder  
  • Method Summary

    Modifier and Type Method Description
    static FilesRemoteListRequest.FilesRemoteListRequestBuilder builder()  
    protected boolean canEqual​(java.lang.Object other)  
    boolean equals​(java.lang.Object o)  
    java.lang.String getChannel()
    Filter files appearing in a specific channel, indicated by its ID.
    java.lang.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.
    java.lang.Integer getLimit()
    The maximum number of items to return.
    java.lang.String getToken()
    Authentication token.
    java.lang.String getTsFrom()
    Filter files created after this timestamp (inclusive).
    java.lang.String getTsTo()
    Filter files created before this timestamp (inclusive).
    int hashCode()  
    void setChannel​(java.lang.String channel)
    Filter files appearing in a specific channel, indicated by its ID.
    void setCursor​(java.lang.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.
    void setLimit​(java.lang.Integer limit)
    The maximum number of items to return.
    void setToken​(java.lang.String token)
    Authentication token.
    void setTsFrom​(java.lang.String tsFrom)
    Filter files created after this timestamp (inclusive).
    void setTsTo​(java.lang.String tsTo)
    Filter files created before this timestamp (inclusive).
    java.lang.String toString()  

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Method Details

    • builder

    • getToken

      public java.lang.String getToken()
      Authentication token. Requires scope: `remote_files:read`
      Specified by:
      getToken in interface SlackApiRequest
    • getChannel

      public java.lang.String getChannel()
      Filter files appearing in a specific channel, indicated by its ID.
    • getCursor

      public java.lang.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 java.lang.Integer getLimit()
      The maximum number of items to return.
    • getTsFrom

      public java.lang.String getTsFrom()
      Filter files created after this timestamp (inclusive).
    • getTsTo

      public java.lang.String getTsTo()
      Filter files created before this timestamp (inclusive).
    • setToken

      public void setToken​(java.lang.String token)
      Authentication token. Requires scope: `remote_files:read`
    • setChannel

      public void setChannel​(java.lang.String channel)
      Filter files appearing in a specific channel, indicated by its ID.
    • setCursor

      public void setCursor​(java.lang.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​(java.lang.Integer limit)
      The maximum number of items to return.
    • setTsFrom

      public void setTsFrom​(java.lang.String tsFrom)
      Filter files created after this timestamp (inclusive).
    • setTsTo

      public void setTsTo​(java.lang.String tsTo)
      Filter files created before this timestamp (inclusive).
    • equals

      public boolean equals​(java.lang.Object o)
      Overrides:
      equals in class java.lang.Object
    • canEqual

      protected boolean canEqual​(java.lang.Object other)
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class java.lang.Object
    • toString

      public java.lang.String toString()
      Overrides:
      toString in class java.lang.Object