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

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

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

import lombok.Data;

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

* https://api.slack.com/events/channel_rename */ @Data public class ChannelRenameEvent implements Event { public static final String TYPE_NAME = "channel_rename"; private final String type = TYPE_NAME; private Channel channel; @Data public static class Channel { private String id; private String name; // new name private Integer created; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy