com.slack.api.model.event.ExternalOrgMigrationFinishedEvent Maven / Gradle / Ivy
package com.slack.api.model.event;
import lombok.Data;
/**
* The external_org_migration_finished event is sent to all connections when an external workspace completes to migrate to an Enterprise Grid.
*
* The team indicates the external workspace that is migrating.
*
* The date_started indicates the time the external workspace started to migrate.
*
* The date_finished indicates the time the external workspace finished to migrate.
*
* https://api.slack.com/events/external_org_migration_finished
*/
@Data
public class ExternalOrgMigrationFinishedEvent implements Event {
public static final String TYPE_NAME = "external_org_migration_finished";
private final String type = TYPE_NAME;
private Team team;
private Integer dateStarted;
private Integer dateFinished;
@Data
public static class Team {
private String id;
private boolean isMigrating;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy