All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.slack.api.methods.request.calls.CallsUpdateRequest Maven / Gradle / Ivy

There is a newer version: 1.39.0
Show 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 - 2024 Weber Informatics LLC | Privacy Policy