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

com.slack.api.methods.request.files.FilesGetUploadURLExternalRequest Maven / Gradle / Ivy

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

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

/**
 * https://api.slack.com/methods/files.getUploadURLExternal
 */
@Data
@Builder
public class FilesGetUploadURLExternalRequest implements SlackApiRequest {

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

    /**
     * Name of the file being uploaded.
     */
    private String filename;

    /**
     * Size in bytes of the file being uploaded.
     */
    private Integer length;

    /**
     * Description of image for screen-reader.
     */
    private String altTxt;

    /**
     * Syntax type of the snippet being uploaded.
     */
    private String snippetType;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy