Class AdminUsersSessionGetSettingsRequest
- java.lang.Object
-
- com.slack.api.methods.request.admin.users.AdminUsersSessionGetSettingsRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class AdminUsersSessionGetSettingsRequest extends Object implements SlackApiRequest
https://api.slack.com/methods/admin.users.session.getSettings
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAdminUsersSessionGetSettingsRequest.AdminUsersSessionGetSettingsRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AdminUsersSessionGetSettingsRequest.AdminUsersSessionGetSettingsRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetToken()Authentication token bearing required scopes.List<String>getUserIds()The IDs of users you'd like to fetch session settings for.inthashCode()voidsetToken(String token)Authentication token bearing required scopes.voidsetUserIds(List<String> userIds)The IDs of users you'd like to fetch session settings for.StringtoString()
-
-
-
Method Detail
-
builder
public static AdminUsersSessionGetSettingsRequest.AdminUsersSessionGetSettingsRequestBuilder builder()
-
getToken
public String getToken()
Authentication token bearing required scopes.- Specified by:
getTokenin interfaceSlackApiRequest- Returns:
- token string value or null
-
getUserIds
public List<String> getUserIds()
The IDs of users you'd like to fetch session settings for. Note: if a user does not have any active sessions, they will not be returned in the response.
-
setToken
public void setToken(String token)
Authentication token bearing required scopes.- Specified by:
setTokenin interfaceSlackApiRequest
-
setUserIds
public void setUserIds(List<String> userIds)
The IDs of users you'd like to fetch session settings for. Note: if a user does not have any active sessions, they will not be returned in the response.
-
canEqual
protected boolean canEqual(Object other)
-
-