Class CallsParticipantsAddRequest
- java.lang.Object
-
- com.slack.api.methods.request.calls.participants.CallsParticipantsAddRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class CallsParticipantsAddRequest extends Object implements SlackApiRequest
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCallsParticipantsAddRequest.CallsParticipantsAddRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CallsParticipantsAddRequest.CallsParticipantsAddRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetId()id returned by the calls.add method.StringgetToken()Authentication token bearing required scopes.List<CallParticipant>getUsers()The list of users to register as participants in the Call.inthashCode()voidsetId(String id)id returned by the calls.add method.voidsetToken(String token)Authentication token bearing required scopes.voidsetUsers(List<CallParticipant> users)The list of users to register as participants in the Call.StringtoString()
-
-
-
Method Detail
-
builder
public static CallsParticipantsAddRequest.CallsParticipantsAddRequestBuilder builder()
-
getToken
public String getToken()
Authentication token bearing required scopes.- Specified by:
getTokenin interfaceSlackApiRequest
-
getId
public String getId()
id returned by the calls.add method.
-
getUsers
public List<CallParticipant> getUsers()
The list of users to register as participants in the Call.
-
setToken
public void setToken(String token)
Authentication token bearing required scopes.
-
setId
public void setId(String id)
id returned by the calls.add method.
-
setUsers
public void setUsers(List<CallParticipant> users)
The list of users to register as participants in the Call.
-
canEqual
protected boolean canEqual(Object other)
-
-