
com.github.seratch.jslack.api.methods.request.mpim.MpimMarkRequest Maven / Gradle / Ivy
package com.github.seratch.jslack.api.methods.request.mpim;
import com.github.seratch.jslack.api.methods.SlackApiRequest;
import lombok.Builder;
import lombok.Data;
@Data
@Builder
public class MpimMarkRequest implements SlackApiRequest {
/**
* Authentication token. Requires scope: `mpim:write`
*/
private String token;
/**
* multiparty direct message channel to set reading cursor in.
*/
private String channel;
/**
* Timestamp of the most recently seen message.
*/
private String ts;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy