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

com.github.seratch.jslack.api.model.event.GridMigrationFinishedEvent 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 your app is installed by completes migration to Enterprise Grid.
 * 

* The example above details the complete Events API payload, including the event wrapper. * The team_id indicates which workspace is migrating. *

* By also subscribing to the grid_migration_started event, you'll receive notice when the migration began. *

* It's best to cease API and platform operations for a workspace during migration. * While duration varies workspace-to-workspace, expect an extended period of unavailability. *

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





© 2015 - 2025 Weber Informatics LLC | Privacy Policy