Class CallsUpdateRequest
- java.lang.Object
-
- com.slack.api.methods.request.calls.CallsUpdateRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class CallsUpdateRequest extends Object implements SlackApiRequest
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCallsUpdateRequest.CallsUpdateRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CallsUpdateRequest.CallsUpdateRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetDesktopAppJoinUrl()When supplied, available Slack clients will attempt to directly launch the 3rd-party Call with this URL.StringgetId()id returned by the calls.add method.StringgetJoinUrl()The URL required for a client to join the Call.StringgetTitle()The name of the Call.StringgetToken()Authentication token bearing required scopes.inthashCode()voidsetDesktopAppJoinUrl(String desktopAppJoinUrl)When supplied, available Slack clients will attempt to directly launch the 3rd-party Call with this URL.voidsetId(String id)id returned by the calls.add method.voidsetJoinUrl(String joinUrl)The URL required for a client to join the Call.voidsetTitle(String title)The name of the Call.voidsetToken(String token)Authentication token bearing required scopes.StringtoString()
-
-
-
Method Detail
-
builder
public static CallsUpdateRequest.CallsUpdateRequestBuilder 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.
-
getDesktopAppJoinUrl
public String getDesktopAppJoinUrl()
When supplied, available Slack clients will attempt to directly launch the 3rd-party Call with this URL.
-
getJoinUrl
public String getJoinUrl()
The URL required for a client to join the Call.
-
getTitle
public String getTitle()
The name of 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.
-
setDesktopAppJoinUrl
public void setDesktopAppJoinUrl(String desktopAppJoinUrl)
When supplied, available Slack clients will attempt to directly launch the 3rd-party Call with this URL.
-
setJoinUrl
public void setJoinUrl(String joinUrl)
The URL required for a client to join the Call.
-
setTitle
public void setTitle(String title)
The name of the Call.
-
canEqual
protected boolean canEqual(Object other)
-
-