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

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

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

import lombok.Data;

/**
 * The channel_marked event is sent to all open connections for a user
 * when that user moves the read cursor in a channel by calling the channels.mark API method.
 * 

* https://api.slack.com/events/channel_marked */ @Data public class ChannelMarkedEvent implements Event { public static final String TYPE_NAME = "channel_marked"; private final String type = TYPE_NAME; private String channel; private String ts; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy