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

com.slack.api.methods.request.files.FilesRevokePublicURLRequest 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.revokePublicURL
 */
@Data
@Builder
public class FilesRevokePublicURLRequest implements SlackApiRequest {

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

    /**
     * File to revoke
     */
    private String file;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy