Class AdminAppsApprovedListRequest

java.lang.Object
com.slack.api.methods.request.admin.apps.AdminAppsApprovedListRequest
All Implemented Interfaces:
SlackApiRequest

public class AdminAppsApprovedListRequest
extends java.lang.Object
implements SlackApiRequest
https://api.slack.com/methods/admin.apps.approved.list
  • Nested Class Summary

    Nested Classes 
    Modifier and Type Class Description
    static class  AdminAppsApprovedListRequest.AdminAppsApprovedListRequestBuilder  
  • Method Summary

    Modifier and Type Method Description
    static AdminAppsApprovedListRequest.AdminAppsApprovedListRequestBuilder builder()  
    protected boolean canEqual​(java.lang.Object other)  
    boolean equals​(java.lang.Object o)  
    java.lang.String getCursor()
    Set cursor to next_cursor returned by the previous call to list items in the next page
    java.lang.String getEnterpriseId()
    Org Id.
    java.lang.Integer getLimit()
    The maximum number of items to return.
    java.lang.String getTeamId()
    Workspace Id.
    java.lang.String getToken()
    Authentication token bearing required scopes.
    int hashCode()  
    void setCursor​(java.lang.String cursor)
    Set cursor to next_cursor returned by the previous call to list items in the next page
    void setEnterpriseId​(java.lang.String enterpriseId)
    Org Id.
    void setLimit​(java.lang.Integer limit)
    The maximum number of items to return.
    void setTeamId​(java.lang.String teamId)
    Workspace Id.
    void setToken​(java.lang.String token)
    Authentication token bearing required scopes.
    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 bearing required scopes.
      Specified by:
      getToken in interface SlackApiRequest
    • getCursor

      public java.lang.String getCursor()
      Set cursor to next_cursor returned by the previous call to list items in the next page
    • getLimit

      public java.lang.Integer getLimit()
      The maximum number of items to return. Must be between 1 - 1000 both inclusive.
    • getEnterpriseId

      public java.lang.String getEnterpriseId()
      Org Id.

      Note: enterprise_id and team_id cannot be used together. Passing enterprise_id will return the list of org-wide approved apps. Passing team_id will return the apps approved for that specific workspace.

    • getTeamId

      public java.lang.String getTeamId()
      Workspace Id.

      Note: enterprise_id and team_id cannot be used together. Passing enterprise_id will return the list of org-wide approved apps. Passing team_id will return the apps approved for that specific workspace.

    • setToken

      public void setToken​(java.lang.String token)
      Authentication token bearing required scopes.
    • setCursor

      public void setCursor​(java.lang.String cursor)
      Set cursor to next_cursor returned by the previous call to list items in the next page
    • setLimit

      public void setLimit​(java.lang.Integer limit)
      The maximum number of items to return. Must be between 1 - 1000 both inclusive.
    • setEnterpriseId

      public void setEnterpriseId​(java.lang.String enterpriseId)
      Org Id.

      Note: enterprise_id and team_id cannot be used together. Passing enterprise_id will return the list of org-wide approved apps. Passing team_id will return the apps approved for that specific workspace.

    • setTeamId

      public void setTeamId​(java.lang.String teamId)
      Workspace Id.

      Note: enterprise_id and team_id cannot be used together. Passing enterprise_id will return the list of org-wide approved apps. Passing team_id will return the apps approved for that specific workspace.

    • 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