Class AdminUsersSessionListRequest
- java.lang.Object
-
- com.slack.api.methods.request.admin.users.AdminUsersSessionListRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class AdminUsersSessionListRequest extends Object implements SlackApiRequest
https://api.slack.com/methods/admin.users.session.list
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAdminUsersSessionListRequest.AdminUsersSessionListRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AdminUsersSessionListRequest.AdminUsersSessionListRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetCursor()Set cursor to next_cursor returned by the previous call to list items in the next page.IntegergetLimit()The maximum number of items to return.StringgetTeamId()ID of the team you'd like active sessions for (must be used with user_id)StringgetToken()Authentication token bearing required scopes.StringgetUserId()ID of user you'd like active sessions for (must be used with team_id)inthashCode()voidsetCursor(String cursor)Set cursor to next_cursor returned by the previous call to list items in the next page.voidsetLimit(Integer limit)The maximum number of items to return.voidsetTeamId(String teamId)ID of the team you'd like active sessions for (must be used with user_id)voidsetToken(String token)Authentication token bearing required scopes.voidsetUserId(String userId)ID of user you'd like active sessions for (must be used with team_id)StringtoString()
-
-
-
Method Detail
-
builder
public static AdminUsersSessionListRequest.AdminUsersSessionListRequestBuilder builder()
-
getToken
public String getToken()
Authentication token bearing required scopes. (admin.users:read)- Specified by:
getTokenin interfaceSlackApiRequest
-
getCursor
public String getCursor()
Set cursor to next_cursor returned by the previous call to list items in the next page.
-
getLimit
public Integer getLimit()
The maximum number of items to return. Must be between 1 - 1000 both inclusive.Default: 1000
-
getTeamId
public String getTeamId()
ID of the team you'd like active sessions for (must be used with user_id)
-
getUserId
public String getUserId()
ID of user you'd like active sessions for (must be used with team_id)
-
setToken
public void setToken(String token)
Authentication token bearing required scopes. (admin.users:read)
-
setCursor
public void setCursor(String cursor)
Set cursor to next_cursor returned by the previous call to list items in the next page.
-
setLimit
public void setLimit(Integer limit)
The maximum number of items to return. Must be between 1 - 1000 both inclusive.Default: 1000
-
setTeamId
public void setTeamId(String teamId)
ID of the team you'd like active sessions for (must be used with user_id)
-
setUserId
public void setUserId(String userId)
ID of user you'd like active sessions for (must be used with team_id)
-
canEqual
protected boolean canEqual(Object other)
-
-