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

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

The newest version!
package com.github.seratch.jslack.api.model.event;

import lombok.Data;

/**
 * This Events API-only event is sent via subscription whenever a Slack app is completely uninstalled.
 * 

* You should also receive tokens_revoked events for revoked tokens. * An app is not uninstalled until its final user and bot tokens are revoked. *

* The example above details the complete Events API payload, including the event wrapper. * The team_id indicates which workspace uninstalled the Slack app identified by api_app_id. *

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





© 2015 - 2025 Weber Informatics LLC | Privacy Policy