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

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

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

import lombok.Data;

/**
 * The im_close event is sent to all connections for a user when a direct message channel is closed by that user.
 * 

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





© 2015 - 2025 Weber Informatics LLC | Privacy Policy