com.slack.api.methods.request.calls.CallsUpdateRequest Maven / Gradle / Ivy
The newest version!
package com.slack.api.methods.request.calls;
import com.slack.api.methods.SlackApiRequest;
import lombok.Builder;
import lombok.Data;
/**
* https://api.slack.com/methods/calls.update
*/
@Data
@Builder
public class CallsUpdateRequest implements SlackApiRequest {
/**
* Authentication token bearing required scopes.
*/
private String token;
/**
* id returned by the calls.add method.
*/
private String id;
/**
* When supplied, available Slack clients will attempt to
* directly launch the 3rd-party Call with this URL.
*/
private String desktopAppJoinUrl;
/**
* The URL required for a client to join the Call.
*/
private String joinUrl;
/**
* The name of the Call.
*/
private String title;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy