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

com.slack.api.methods.request.conversations.ConversationsMarkRequest Maven / Gradle / Ivy

There is a newer version: 1.39.0
Show newest version
package com.slack.api.methods.request.conversations;

import com.slack.api.methods.SlackApiRequest;
import lombok.Builder;
import lombok.Data;

/**
 * https://api.slack.com/methods/conversations.mark
 */
@Data
@Builder
public class ConversationsMarkRequest implements SlackApiRequest {

    /**
     * Authentication token bearing required scopes.
     */
    private String token;

    /**
     * Channel or conversation to set the read cursor for.
     */
    private String channel;

    /**
     * Unique identifier of message you want marked as most recently seen in this conversation.
     */
    private String ts;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy