Class CallsUpdateRequest.CallsUpdateRequestBuilder
- java.lang.Object
-
- com.slack.api.methods.request.calls.CallsUpdateRequest.CallsUpdateRequestBuilder
-
- Enclosing class:
- CallsUpdateRequest
public static class CallsUpdateRequest.CallsUpdateRequestBuilder extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CallsUpdateRequestbuild()CallsUpdateRequest.CallsUpdateRequestBuilderdesktopAppJoinUrl(String desktopAppJoinUrl)When supplied, available Slack clients will attempt to directly launch the 3rd-party Call with this URL.CallsUpdateRequest.CallsUpdateRequestBuilderid(String id)id returned by the calls.add method.CallsUpdateRequest.CallsUpdateRequestBuilderjoinUrl(String joinUrl)The URL required for a client to join the Call.CallsUpdateRequest.CallsUpdateRequestBuildertitle(String title)The name of the Call.CallsUpdateRequest.CallsUpdateRequestBuildertoken(String token)Authentication token bearing required scopes.StringtoString()
-
-
-
Method Detail
-
token
public CallsUpdateRequest.CallsUpdateRequestBuilder token(String token)
Authentication token bearing required scopes.- Returns:
this.
-
id
public CallsUpdateRequest.CallsUpdateRequestBuilder id(String id)
id returned by the calls.add method.- Returns:
this.
-
desktopAppJoinUrl
public CallsUpdateRequest.CallsUpdateRequestBuilder desktopAppJoinUrl(String desktopAppJoinUrl)
When supplied, available Slack clients will attempt to directly launch the 3rd-party Call with this URL.- Returns:
this.
-
joinUrl
public CallsUpdateRequest.CallsUpdateRequestBuilder joinUrl(String joinUrl)
The URL required for a client to join the Call.- Returns:
this.
-
title
public CallsUpdateRequest.CallsUpdateRequestBuilder title(String title)
The name of the Call.- Returns:
this.
-
build
public CallsUpdateRequest build()
-
-