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

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

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

import lombok.Data;

/**
 * The pref_change event is sent to all connections for a user when a user preference is changed.
 * Clients should update to reflect new changes immediately.
 * 

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





© 2015 - 2025 Weber Informatics LLC | Privacy Policy