Class UsergroupsUsersUpdateRequest
- java.lang.Object
-
- com.slack.api.methods.request.usergroups.users.UsergroupsUsersUpdateRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class UsergroupsUsersUpdateRequest extends Object implements SlackApiRequest
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classUsergroupsUsersUpdateRequest.UsergroupsUsersUpdateRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UsergroupsUsersUpdateRequest.UsergroupsUsersUpdateRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetToken()Authentication token.StringgetUsergroup()The encoded ID of the User Group to update.List<String>getUsers()A comma separated string of encoded user IDs that represent the entire list of users for the User Group.inthashCode()booleanisIncludeCount()Include the number of users in the User Group.voidsetIncludeCount(boolean includeCount)Include the number of users in the User Group.voidsetToken(String token)Authentication token.voidsetUsergroup(String usergroup)The encoded ID of the User Group to update.voidsetUsers(List<String> users)A comma separated string of encoded user IDs that represent the entire list of users for the User Group.StringtoString()
-
-
-
Method Detail
-
builder
public static UsergroupsUsersUpdateRequest.UsergroupsUsersUpdateRequestBuilder builder()
-
getToken
public String getToken()
Authentication token. Requires scope: `usergroups:write`- Specified by:
getTokenin interfaceSlackApiRequest
-
getUsergroup
public String getUsergroup()
The encoded ID of the User Group to update.
-
getUsers
public List<String> getUsers()
A comma separated string of encoded user IDs that represent the entire list of users for the User Group.
-
isIncludeCount
public boolean isIncludeCount()
Include the number of users in the User Group.
-
setToken
public void setToken(String token)
Authentication token. Requires scope: `usergroups:write`
-
setUsergroup
public void setUsergroup(String usergroup)
The encoded ID of the User Group to update.
-
setUsers
public void setUsers(List<String> users)
A comma separated string of encoded user IDs that represent the entire list of users for the User Group.
-
setIncludeCount
public void setIncludeCount(boolean includeCount)
Include the number of users in the User Group.
-
canEqual
protected boolean canEqual(Object other)
-
-