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

com.slack.api.methods.request.admin.emoji.AdminEmojiRemoveRequest Maven / Gradle / Ivy

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

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

/**
 * https://api.slack.com/methods/admin.emoji.remove
 */
@Data
@Builder
public class AdminEmojiRemoveRequest implements SlackApiRequest {

    /**
     * Authentication token bearing required scopes.
     */
    private String token;

    /**
     * The name of the emoji to be removed. Colons (:myemoji:) around the value are not required, although they may be included.
     */
    private String name;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy