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

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

package com.slack.api.model.event;

import lombok.Data;

/**
 * The channel_deleted event is sent to all connections for a workspace when a channel is deleted.
 * Clients can use this to update their local cache of non-joined channels.
 * 

* https://api.slack.com/events/channel_deleted */ @Data public class ChannelDeletedEvent implements Event { public static final String TYPE_NAME = "channel_deleted"; private final String type = TYPE_NAME; private String channel; private String actorId; private String eventTs; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy