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

com.slack.api.methods.request.files.comments.FilesCommentsAddRequest Maven / Gradle / Ivy

There is a newer version: 1.39.0
Show newest version
package com.slack.api.methods.request.files.comments;

import com.slack.api.methods.SlackApiRequest;
import lombok.Builder;
import lombok.Data;

/**
 * No longer supported - https://api.slack.com/changelog/2018-05-file-threads-soon-tread
 */
@Deprecated // https://api.slack.com/changelog/2018-05-file-threads-soon-tread
@Data
@Builder
public class FilesCommentsAddRequest implements SlackApiRequest {

    /**
     * Authentication token. Requires scope: `files:write:user`
     */
    private String token;

    /**
     * File to add a comment to.
     */
    private String file;

    /**
     * Text of the comment to add.
     */
    private String comment;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy