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

com.github.seratch.jslack.api.model.event.ChannelArchiveEvent Maven / Gradle / Ivy

package com.github.seratch.jslack.api.model.event;

import lombok.Data;

/**
 * The channel_archive event is sent to all connections for a workspace when a channel is archived.
 * Clients can use this to update their local list of channels.
 * 

* https://api.slack.com/events/channel_archive */ @Data public class ChannelArchiveEvent implements Event { public static final String TYPE_NAME = "channel_archive"; private final String type = TYPE_NAME; private String channel; private String user; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy