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

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

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

import lombok.Data;

/**
 * The team_pref_change event is sent to all connections for a workspace when a preference is changed.
 * Where appropriate clients should update to reflect new changes immediately.
 * 

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





© 2015 - 2025 Weber Informatics LLC | Privacy Policy