com.slack.api.model.event.UserHuddleChangedEvent Maven / Gradle / Ivy
package com.slack.api.model.event;
import com.slack.api.model.User;
import lombok.Data;
/**
* The user_huddle_changed event is sent to all connections for a workspace when a user's huddle status is changed.
* The event is identical to the existing user_change event. Both user_change and user_huddle_changed are dispatched
* at the exact same time. Use the users.profile.set method to update user profile data.
*
* https://api.slack.com/events/user_huddle_changed
*/
@Data
public class UserHuddleChangedEvent implements Event {
public static final String TYPE_NAME = "user_huddle_changed";
private final String type = TYPE_NAME;
private User user; // TODO: make sure the available attributes
private Integer cacheTs;
private String eventTs;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy