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

com.slack.api.model.event.FileDeletedEvent Maven / Gradle / Ivy

There is a newer version: 1.44.1
Show newest version
package com.slack.api.model.event;

import lombok.Data;

import java.util.List;

/**
 * The file_deleted event is sent to all connected clients for a workspace when a file is deleted. Unlike most file events,
 * the file property contains a file ID and not a full file object.
 * 

* https://api.slack.com/events/file_deleted */ @Data public class FileDeletedEvent implements Event { public static final String TYPE_NAME = "file_deleted"; private final String type = TYPE_NAME; private String fileId; private List channelIds; private String eventTs; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy