com.slack.api.model.event.SubteamSelfRemovedEvent Maven / Gradle / Ivy
package com.slack.api.model.event;
import lombok.Data;
/**
* The subteam_self_removed event is sent to you when you have been removed to an existing User Group.
* Clients can use this to update their local list of User Groups.
*
* This event is not available to bot user subscriptions in the Events API.
*
* https://api.slack.com/events/subteam_self_removed
*/
@Data
public class SubteamSelfRemovedEvent implements Event {
public static final String TYPE_NAME = "subteam_self_removed";
private final String type = TYPE_NAME;
private String subteamId;
private String eventTs;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy