
com.github.seratch.jslack.api.methods.request.conversations.ConversationsCloseRequest Maven / Gradle / Ivy
package com.github.seratch.jslack.api.methods.request.conversations;
import com.github.seratch.jslack.api.methods.SlackApiRequest;
import lombok.Builder;
import lombok.Data;
@Data
@Builder
public class ConversationsCloseRequest implements SlackApiRequest {
/**
* Authentication token. Requires scope: `conversations:write`
*/
private String token;
/**
* Conversation to close.
*/
private String channel;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy